:root {
	--blog-deep: #0b132b;
	--blog-ink: #1c2333;
	--blog-muted: #6f7791;
	--blog-line: #e3e7f0;
	--blog-soft: #f6f8fc;
	--blog-primary: #6c5ce7;
	--blog-secondary: #00d2ff;
	--blog-gradient: linear-gradient(135deg, #6c5ce7 0%, #00d2ff 100%);
	--blog-radius-lg: 32px;
	--blog-radius-md: 20px;
	--blog-radius-sm: 12px;
	--shadow-soft: 0 20px 45px rgba(15, 23, 42, 0.12);
}

body {
	font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	background-color: var(--blog-soft);
	color: var(--blog-ink);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.blog-header {
	position: sticky;
	top: 0;
	z-index: 20;
}

.header-background {
	position: absolute;
	inset: 0;
	backdrop-filter: blur(20px) saturate(180%);
	background: linear-gradient(180deg, #005A84 6.77%, rgba(21, 122, 168, 0.84) 100%);
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(255, 255, 255, 0.1) inset;
}

.header-background::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
	pointer-events: none;
}

.blog-announcement {
	background: var(--blog-gradient);
	color: #fff;
	font-size: 0.95rem;
	padding: 0.65rem 0;
}

.announcement-label {
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	background: rgba(255, 255, 255, 0.2);
	padding: 0.25rem 0.75rem;
	border-radius: 999px;
}

.announcement-link {
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.announcement-link::after {
	content: "\f285";
	font-family: "bootstrap-icons";
	font-size: 1rem;
}

.blog-navbar {
	padding: 0.5rem 0;
	margin-top: -0.5rem;
	background-color: transparent;
	position: relative;
	z-index: 1;
}

.navbar-brand {
	font-family: 'Space Grotesk', 'Inter', sans-serif;
	font-size: 1.15rem;
}

.brand-logo {
	width: 110px;
	height: auto;
	display: block;
	transition: transform 0.3s ease;
}

.brand-logo:hover {
	transform: scale(1.05);
}

.brand-logo-sm {
	width: 90px;
}

.nav-link {
	font-weight: 500;
	color: #fff;
	padding: 0.4rem 0.8rem !important;
	position: relative;
	transition: color 0.3s ease;
	border-radius: 8px;
}

.nav-link span {
	position: relative;
	z-index: 1;
}

.nav-link::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
	border-radius: 8px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.nav-link.active {
	color: #fff;
}

.nav-link.active::before {
	opacity: 1;
}

.nav-link:hover {
	color: #fff;
}

.nav-link:hover::before {
	opacity: 1;
}

.btn-gradient {
	background: var(--blog-gradient);
	border: none;
	color: #fff;
	padding: 0.5rem 1.2rem;
	border-radius: 999px;
	font-weight: 600;
	box-shadow: 0 8px 24px rgba(108, 92, 231, 0.4), 0 0 0 0 rgba(108, 92, 231, 0.5);
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	position: relative;
	overflow: hidden;
}

.btn-gradient::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.btn-gradient:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(108, 92, 231, 0.5), 0 0 0 4px rgba(108, 92, 231, 0.1);
}

.btn-gradient:hover::before {
	opacity: 1;
}

.btn-gradient i {
	transition: transform 0.3s ease;
}

.btn-gradient:hover i {
	transform: translateX(4px);
}

.navbar-toggler {
	border: none;
	padding: 0.5rem;
	background: transparent;
}

.navbar-toggler-icon-custom {
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: 24px;
	height: 18px;
	position: relative;
}

.navbar-toggler-icon-custom span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--blog-ink);
	border-radius: 2px;
	transition: all 0.3s ease;
}

.navbar-toggler:hover .navbar-toggler-icon-custom span {
	background: var(--blog-primary);
}

.blog-main {
	padding-top: 0;
	padding-bottom: 2rem;
	flex: 1;
}

.blog-hero {
	margin: 1.5rem auto 0;
	max-width: 1200px;
	background-color: #f6f8fc;
	border-radius: var(--blog-radius-lg);
	padding: 0.75rem;
	position: relative;
	overflow: visible;
}

.hero-row-gradient {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(246, 248, 252, 0.6) 50%, rgba(240, 243, 250, 0.5) 100%);
	border-radius: var(--blog-radius-sm);
	padding: 0.5rem;
}

.hero-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}

.hero-image {
	position: relative;
	text-align: right;
}

.hero-image img {
	max-width: 100%;
	height: auto;
	object-fit: contain;
	border-radius: var(--blog-radius-sm);
	box-shadow: var(--shadow-soft);
	display: block;
	margin-left: auto;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.4rem 1rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(6px);
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--blog-ink);
}

.hero-title {
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.1;
	margin-bottom: 0.25rem;
	color: var(--blog-ink);
	animation: fadeInLeft 0.8s ease-out forwards;
	opacity: 0;
	transform: translateX(-30px);
}

.hero-subtitle {
	font-size: 0.95rem;
	color: rgba(12, 16, 40, 0.85);
	max-width: 720px;
	margin-bottom: 0.25rem;
	animation: fadeInLeft 0.8s ease-out 0.3s forwards;
	opacity: 0;
	transform: translateX(-30px);
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.hero-metrics {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
}

.hero-metric {
	min-width: 140px;
	padding: 0.75rem 1rem;
	border-radius: var(--blog-radius-sm);
	background: #fff;
	box-shadow: var(--shadow-soft);
}

.hero-metric span {
	display: block;
	font-size: 0.75rem;
	color: var(--blog-muted);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.hero-metric strong {
	font-size: 1.25rem;
	color: var(--blog-ink);
}

.filter-chip {
	position: relative;
	z-index: 100;
	cursor: pointer;
	border: 1px solid var(--blog-line);
	color: var(--blog-muted);
	font-weight: 500;
	border-radius: 999px;
	padding: 0.45rem 1.2rem;
	background-color: #fff;
	transition: all 0.3s ease;
	pointer-events: auto;
}

.filter-chip.is-active,
.filter-chip:hover {
	color: #fff;
	background: var(--blog-gradient);
	border-color: transparent;
	box-shadow: 0 10px 20px rgba(0, 210, 255, 0.2);
}

.card-modern {
	border: none;
	border-radius: var(--blog-radius-md);
	box-shadow: 0 25px 45px rgba(15, 23, 42, 0.08);
	overflow: hidden;
	background: #fff;
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
}

.card-modern img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.card-body {
	padding: 1.75rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	position: relative;
}

.card-modern .stretched-link {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
}

.card-category {
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--blog-muted);
	margin-bottom: 0.5rem;
}

.card-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.card-summary {
	color: var(--blog-muted);
	margin-bottom: 1.5rem;
}

.card-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--blog-muted);
	font-size: 0.95rem;
	margin-top: auto;
}

.badge-soft {
	padding: 0.35rem 0.8rem;
	border-radius: 999px;
	background: rgba(108, 92, 231, 0.12);
	color: var(--blog-primary);
	font-weight: 600;
	font-size: 0.85rem;
}

.micro-card {
	padding: 1.25rem 1.5rem;
	border-radius: var(--blog-radius-sm);
	background: #fff;
	border: 1px solid var(--blog-line);
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	transition: transform 0.3s ease, border-color 0.3s ease;
}

.micro-card:hover {
	transform: translateY(-4px);
	border-color: var(--blog-primary);
}

.trend-card {
	padding: 1.5rem;
	border-radius: var(--blog-radius-sm);
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(108, 92, 231, 0.15);
	backdrop-filter: blur(8px);
}

.trend-card strong {
	font-size: 1.2rem;
}

.newsletter-card {
	border-radius: var(--blog-radius-lg);
	padding: 3rem;
	background: linear-gradient(135deg, #0b132b, #1f2a4a);
	color: #fff;
	position: relative;
	overflow: hidden;
}

.newsletter-card::after {
	content: "";
	position: absolute;
	width: 220px;
	height: 220px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 50%;
	bottom: -60px;
	right: -20px;
}

.newsletter-card h3 {
	font-size: 2rem;
	max-width: 540px;
}

.newsletter-card .form-control {
	padding: 0.85rem 1.1rem;
	border-radius: 999px;
	border: none;
}

.newsletter-card .input-group {
	max-width: 480px;
}

.article-hero {
	background: #fff;
	border-radius: var(--blog-radius-lg);
	padding: 3rem;
	box-shadow: var(--shadow-soft);
	margin-bottom: 2rem;
}


.article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	color: var(--blog-muted);
	font-size: 0.95rem;
}

.author-card {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.5rem;
	background: var(--blog-soft);
	border-radius: var(--blog-radius-md);
}

.author-card img {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	object-fit: cover;
}

.article-section {
	background: #fff;
	padding: 2.25rem;
	border-radius: var(--blog-radius-md);
	box-shadow: var(--shadow-soft);
	margin-bottom: 1.5rem;
}

.article-section h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.article-section p {
	color: var(--blog-muted);
	margin-bottom: 0.85rem;
}

.callout-pill {
	padding: 1rem 1.25rem;
	border-radius: var(--blog-radius-sm);
	background: rgba(108, 92, 231, 0.08);
	color: var(--blog-primary);
	font-weight: 600;
}

.article-timeline {
	position: relative;
	padding-left: 1.5rem;
}

.article-timeline::before {
	content: "";
	position: absolute;
	left: 0.5rem;
	top: 0.25rem;
	bottom: 0.25rem;
	width: 2px;
	background: var(--blog-line);
}

.timeline-step {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 1.5rem;
}

.timeline-step::before {
	content: "";
	position: absolute;
	left: -0.1rem;
	top: 0.4rem;
	width: 12px;
	height: 12px;
	border-radius: 999px;
	background: var(--blog-gradient);
	box-shadow: 0 0 0 6px rgba(108, 92, 231, 0.12);
}

.key-takeaway {
	background: var(--blog-gradient);
	color: #fff;
	border-radius: var(--blog-radius-md);
	padding: 2rem;
	box-shadow: var(--shadow-soft);
}

.related-card {
	border-radius: var(--blog-radius-md);
	overflow: hidden;
	background: #fff;
	box-shadow: var(--shadow-soft);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.related-card img {
	width: 100%;
	height: 180px;
	object-fit: cover;
}

.related-card .content {
	padding: 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.blog-footer {
	background: #1f1f1f;
	color: #fff;
	padding: 3rem 0;
	margin-top: 5rem;
	width: 100%;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.footer-top-row {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	align-items: start;
	width: 100%;
	margin-bottom: 2rem;
	gap: 1.5rem;
}

@media (max-width: 768px) {
	.footer-top-row {
		grid-template-columns: 1fr;
		align-items: center;
		text-align: center;
	}
}

.footer-address {
	color: #fff;
	font-size: 0.9rem;
	/* Approximating the font style from image */
}

.footer-address a {
	color: #fff;
	text-decoration: none;
}

.footer-nav-links {
	display: flex;
	gap: 0.5rem;
	align-items: center;
	justify-content: center;
}

.footer-nav-links a {
	color: #fff;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 600;
}

.footer-nav-links span {
	color: #fff;
	font-size: 0.9rem;
}

.footer-social-section {
	display: flex;
	gap: 1rem;
}

.footer-social-icon {
	width: 40px;
	height: 40px;
	background-color: #007bff;
	/* Blue */
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.2rem;
	line-height: 1;
	transition: opacity 0.3s;
}

.footer-social-icon:hover {
	opacity: 0.8;
	color: #fff;
}

.footer-copyright {
	color: #fff;
	font-size: 0.85rem;
	margin-top: 1rem;
}

.footer-bbb-section {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

@media (max-width: 991px) {
	.footer-bbb-section {
		justify-content: center !important;
	}
}

.footer-bbb-logo {
	padding: 5px;
	border-radius: 4px;
	max-height: 100px;
}



.social-link:hover i {
	transform: scale(1.1);
}

.social-link:hover .twitter-icon {
	filter: brightness(0) invert(1);
}

@media (max-width: 992px) {
	.footer-main {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.footer-links {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.footer-bottom {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

	.footer-bottom-left,
	.footer-bottom-center,
	.footer-bottom-right {
		justify-content: center;
		align-items: center;
	}

	.footer-bottom-right {
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.blog-footer {
		padding: 3rem 0 1.5rem;
	}

	.footer-main {
		gap: 2.5rem;
	}

	.footer-links {
		gap: 2rem;
	}

	.footer-bottom {
		gap: 1.5rem;
	}
}

.reveal-on-scroll {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s ease, transform 0.6s ease;
}

.reveal-on-scroll.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 992px) {
	.blog-hero {
		padding: 2.5rem;
	}
}

@media (max-width: 768px) {
	.blog-announcement .container {
		text-align: center;
	}

	.blog-hero {
		padding: 2rem;
	}

	.hero-metrics {
		gap: 1rem;
	}

	.newsletter-card {
		padding: 2.25rem;
	}
}