:root {
	--primary: #2e5bff;
	--primary: #E97F25;
	--secondary: #6c757d;
	--success: #28a745;
	--dark: #212529;
	--light-bg: #f8f9fa;
	--accent: #ff6b6b;
}

.nav-item .btn-primary,
.hero .btn-primary {
	background-color: #E97F25 !important;
	border-color: #E97F25 !important;
}

html {
	width: 100%;
	overflow-x: hidden;
}

body {
	font-family: 'Roboto', sans-serif;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
}

.navbar {
	background-color: #F9F9F9;
	transition: all 0.3s ease;
	padding: 10px 0;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Full hero pages have transparent navbar initially */
.has-full-hero .navbar {
	background-color: transparent;
	padding: 20px 0;
	box-shadow: none;
}

.has-full-hero .navbar.scrolled {
	background-color: #F9F9F9;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	padding: 10px 0;
}

.logo img {
	height: 70px;
	margin: 0;
	padding: 0;
	border-radius: 10px;
}

.has-full-hero .navbar-brand.scrolled,
.has-full-hero .nav-link.scrolled {
	color: var(--dark) !important;
}

.nav-link {
	font-weight: 500;
	color: var(--dark);
	margin: 0 10px;
	position: relative;
}

.has-full-hero .nav-link {
	color: white;
}

.nav-link:hover {
	color: var(--primary);
}

.has-full-hero .nav-link:hover {
	color: #fff;
}

.nav-link::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	background-color: var(--primary);
	bottom: -5px;
	left: 0;
	transition: width 0.3s ease;
}

.nav-link:hover::after {
	width: 100%;
}

.navbar-nav .nav-link.active {
	color: var(--primary) !important;
}

/* Small hero for inner pages */
.hero.small-hero {
	height: 400px;
	/* Increased to account for navbar padding */
	display: flex;
	align-items: center;
	color: white;
	position: relative;
	padding-top: 101px;
	/* Push content below navbar */
}

.small-hero-content {
	width: 100%;
	position: relative;
	z-index: 2;
	/* Above hero gradient */
}

.hero.small-hero .hero-title {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	font-weight: 700;
}

.hero.small-hero .hero-text {
	font-size: 1.1rem;
	margin-bottom: 0;
	opacity: 0.9;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}







.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
	z-index: 1;
}

/*
        background: linear-gradient(135deg, rgba(46, 91, 255, 0.9), rgba(46, 91, 255, 0.7)), url('/api/placeholder/1920/1080') center/cover no-repeat;
        */

.hero-content {
	position: relative;
	z-index: 2;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.hero-text {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}


.hero-image {
	border-radius: 20px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}



.btn-primary {
	background-color: var(--primary);
	border: none;
	padding: 12px 30px;
	border-radius: 30px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.btn-primary:hover {
	background-color: #1a46e0;
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(26, 70, 224, 0.3);
}

.btn-primary.btn-sm {
	padding: 10px 20px 0px 20px;
	font-size: 0.9rem;
}

.btn-outline-light {
	border: 2px solid white;
	padding: 12px 30px;
	border-radius: 30px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.btn-outline-light:hover {
	background-color: white;
	color: var(--primary);
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.section {
	padding: 100px 0;
}

.section-title {
	text-align: center;
	margin-bottom: 60px;
	position: relative;
}

.section-title::after {
	content: '';
	position: absolute;
	width: 80px;
	height: 3px;
	background-color: var(--primary);
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
}

.feature-card {
	padding: 40px 30px;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	height: 100%;
	background-color: white;
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
	color: var(--primary);
	font-size: 3rem;
	margin-bottom: 20px;
}

.portal-card {
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	height: 100%;
	background-color: white;
	border-top: 5px solid var(--primary);
	display: flex;
	flex-direction: column;
}

.portal-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.portal-card ul {
	padding-left: 20px;
}


.portal-card-footer {
	margin-top: auto;
	padding-top: 20px;
}

.portal-icon {
	background-color: rgba(46, 91, 255, 0.1);
	color: var(--primary);
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.portal-icon i {
	font-size: 2rem;
}

.portal-title {
	font-size: 1.5rem;
	margin-bottom: 15px;
}

.testimonial {
	background-color: white;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
	position: relative;
	margin-top: 40px;
}

.testimonial-image {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	position: absolute;
	top: -40px;
	left: 30px;
	border: 5px solid white;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
	margin-top: 50px;
	font-style: italic;
	margin-bottom: 20px;
}

.testimonial-name {
	font-weight: 600;
	margin-bottom: 5px;
}

.testimonial-position {
	color: var(--secondary);
	font-size: 0.9rem;
}

.contact-info {
	padding: 20px;
	border-radius: 15px;
	background-color: white;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
	margin-bottom: 30px;
}

.contact-info i {
	color: var(--primary);
	margin-right: 10px;
}

.contact-form {
	padding: 40px;
	border-radius: 15px;
	background-color: white;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.contact-form .btn,
.btn-outline-primary {
	border-radius: 30px;
	padding: 12px 30px;
}

footer {
	background-color: var(--dark);
	color: white;
	padding: 70px 0 30px;
}

.footer-logo {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 2rem;
	margin-bottom: 20px;
}

.footer-links h5 {
	font-size: 1.2rem;
	margin-bottom: 25px;
}

.footer-links ul {
	list-style: none;
	padding-left: 0;
}

/* .footer-links li {
	margin-bottom: 15px;
} */

.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	display: block;
	width: 100%;
	padding: 5px;

}

.footer-links a:hover {
	color: white;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	margin-right: 10px;
	color: white;
	transition: all 0.3s ease;
}

.social-links a i {
	margin-top: 3px;
}

.social-links a:hover {
	background-color: var(--primary);
	transform: translateY(-3px);
}

.copyright {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 30px;
	margin-top: 50px;
}

.scroll-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background-color: var(--primary);
	color: white;
	border: none;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	z-index: 1000;
}

.scroll-to-top.show {
	opacity: 1;
	visibility: visible;
}

.scroll-to-top:hover {
	background-color: #1a46e0;
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(26, 70, 224, 0.3);
}

@media (max-width: 991px) {
	.hero-title {
		font-size: 2.8rem;
	}

	.hero.small-hero .hero-title {
		font-size: 2rem;
		margin-bottom: 0.8rem;
	}

	.hero.small-hero .hero-text {
		font-size: 1.05rem;
	}

	.navbar-collapse {
		background-color: white;
		padding: 20px;
		border-radius: 10px;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	}

	.navbar-collapse .nav-link {
		color: var(--dark) !important;
	}
}

@media (max-width: 767px) {
	.hero-title {
		font-size: 2.2rem;
	}

	.hero.small-hero {
		height: 350px;
		/* Increased for mobile with navbar padding */
		padding: 101px 15px 0 15px;
		/* Include navbar padding on mobile */
	}

	.hero.small-hero .hero-title {
		font-size: 1.8rem;
		margin-bottom: 0.8rem;
	}

	.hero.small-hero .hero-text {
		font-size: 1rem;
		line-height: 1.5;
	}

	.small-hero-content {
		padding: 0 15px;
	}

	.section {
		padding: 70px 0;
	}
}

/* Knowledge Base Styles */
.search-box {
	background: white;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.knowledge-category-card {
	background: white;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
	height: 100%;
	transition: all 0.3s ease;
}

.knowledge-category-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.category-icon {
	background-color: rgba(233, 127, 37, 0.1);
	color: var(--primary);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.category-icon i {
	font-size: 2rem;
}

.article-list {
	list-style: none;
	padding: 0;
	margin: 20px 0;
}

.article-list li {
	margin-bottom: 10px;
}

.article-list a {
	color: var(--dark);
	text-decoration: none;
	font-size: 0.9rem;
	display: block;
	padding: 8px 0;
	border-bottom: 1px solid #f0f0f0;
	transition: color 0.3s ease;
}

.article-list a:hover {
	color: var(--primary);
}

.popular-article {
	background: white;
	padding: 25px;
	border-radius: 15px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
	height: 100%;
	transition: all 0.3s ease;
}

.popular-article:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.article-meta {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
}

.article-meta .badge {
	font-size: 0.75rem;
}

.popular-article h4 a {
	color: var(--dark);
	text-decoration: none;
	transition: color 0.3s ease;
}

.popular-article h4 a:hover {
	color: var(--primary);
}

.article-stats {
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid #f0f0f0;
}

.help-option {
	background: white;
	padding: 25px;
	border-radius: 15px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
	text-align: center;
	height: 100%;
}

.help-icon {
	background-color: rgba(233, 127, 37, 0.1);
	color: var(--primary);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.help-icon i {
	font-size: 1.5rem;
}

/* About Us Styles */
.stat-item {
	text-align: center;
	padding: 20px;
}

.stat-item h3 {
	margin-bottom: 10px;
}

.story-content p {
	margin-bottom: 1.5rem;
}

.value-card {
	background: white;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
	text-align: center;
	height: 100%;
	transition: all 0.3s ease;
}

.value-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
	background-color: rgba(233, 127, 37, 0.1);
	color: var(--primary);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.value-icon i {
	font-size: 2rem;
}

.team-member {
	background: white;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
	text-align: center;
	height: 100%;
	transition: all 0.3s ease;
}

.team-member:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.placeholder-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background-color: #f8f9fa;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	color: #6c757d;
}

.placeholder-avatar i {
	font-size: 3rem;
}

.member-info .role {
	color: var(--primary);
	font-weight: 600;
	margin-bottom: 15px;
}

.member-info .bio {
	font-size: 0.9rem;
	color: var(--secondary);
	margin-bottom: 20px;
}

.member-social a {
	color: var(--secondary);
	font-size: 1.2rem;
	margin: 0 10px;
	transition: color 0.3s ease;
}

.member-social a:hover {
	color: var(--primary);
}

.timeline {
	position: relative;
	padding-left: 30px;
}

.timeline::before {
	content: '';
	position: absolute;
	left: 15px;
	top: 0;
	bottom: 0;
	width: 2px;
	background-color: var(--primary);
}

.timeline-item {
	position: relative;
	margin-bottom: 40px;
	background: white;
	padding: 25px;
	border-radius: 15px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
	margin-left: 30px;
}

.timeline-item::before {
	content: '';
	position: absolute;
	left: -50px;
	top: 30px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: var(--primary);
}

.timeline-date {
	background-color: var(--primary);
	color: white;
	padding: 5px 15px;
	border-radius: 20px;
	font-weight: 600;
	font-size: 0.9rem;
	display: inline-block;
	margin-bottom: 15px;
}

.timeline-content h4 {
	margin-bottom: 10px;
}

/* Blog Styles */
.featured-article {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	margin-bottom: 40px;
}

.article-image {
	height: 300px;
	position: relative;
}

.featured-article .article-image {
	height: 100%;
	min-height: 300px;
}

.placeholder-image {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #2b4d6e 0%, #070c12 100%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #6c757d;
}

.placeholder-image i {
	font-size: 3rem;
	margin-bottom: 10px;
}

.article-content {
	padding: 30px;
}

.article-meta {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
}

.article-date {
	color: #6c757d;
	font-size: 0.9rem;
}

.article-author {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 20px 0;
}

.author-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #e9ecef;
	display: flex;
	align-items: center;
	justify-content: center;
}

.author-avatar.small {
	width: 30px;
	height: 30px;
}

.author-avatar i {
	color: #6c757d;
}

.author-info {
	display: flex;
	flex-direction: column;
}

.author-name {
	font-weight: 600;
	font-size: 0.9rem;
}

.author-role {
	color: #6c757d;
	font-size: 0.8rem;
}

.blog-category-card {
	background: white;
	padding: 30px 20px;
	border-radius: 15px;
	text-align: center;
	height: 100%;
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.blog-category-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-category-card .category-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 20px;
	background: rgba(233, 127, 37, 0.1);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.blog-category-card .category-icon i {
	font-size: 2rem;
	color: var(--primary);
}

.article-count {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--primary);
	color: white;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
}

.blog-article-card {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	height: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.blog-article-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-article-card .article-content {
	padding: 20px;
	height: calc(100% - 200px);
	display: flex;
	flex-direction: column;
}

.blog-article-card h4 {
	margin: 15px 0 10px 0;
	flex-grow: 1;
}

.blog-article-card h4 a {
	color: inherit;
	text-decoration: none;
}

.blog-article-card h4 a:hover {
	color: var(--primary);
}

.article-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 15px;
	/* border-top: 1px solid #e9ecef; */
}

.read-time {
	color: #6c757d;
	font-size: 0.8rem;
}

.newsletter-signup .input-group {
	max-width: 400px;
	margin: 0 auto;
}

.newsletter-signup .form-control {
	border-radius: 25px 0 0 25px;
}

.newsletter-signup .btn {
	border-radius: 0 25px 25px 0;
}

.topic-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.topic-tag {
	background: #f8f9fa;
	padding: 5px 15px;
	border-radius: 20px;
	text-decoration: none;
	color: #6c757d;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

.topic-tag:hover {
	background: var(--primary);
	color: white;
	text-decoration: none;
}

.archive-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.archive-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 15px;
	border-radius: 8px;
	text-decoration: none;
	color: inherit;
	transition: background-color 0.3s ease;
}

.archive-item:hover {
	background-color: #f8f9fa;
	text-decoration: none;
	color: inherit;
}

.archive-count {
	color: #6c757d;
	font-size: 0.8rem;
}

/* Security Timeline Styles */
.security-timeline {
	position: relative;
	padding-left: 30px;
}

.security-timeline::before {
	content: '';
	position: absolute;
	left: 15px;
	top: 0;
	bottom: 0;
	width: 2px;
	background-color: var(--primary);
}

.security-timeline .timeline-item {
	position: relative;
	margin-bottom: 40px;
	background: white;
	padding: 25px;
	border-radius: 15px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
	margin-left: 30px;
}

.security-timeline .timeline-item::before {
	content: '';
	position: absolute;
	left: -42px;
	top: 30px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: var(--primary);
}

.timeline-icon {
	position: absolute;
	left: -55px;
	top: 15px;
	width: 40px;
	height: 40px;
	background: var(--primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.timeline-icon i {
	color: white;
	font-size: 1.2rem;
}

/* Compliance Card Styles */
.compliance-card {
	background: white;
	padding: 30px;
	border-radius: 15px;
	text-align: center;
	height: 100%;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.compliance-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.compliance-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 20px;
	background: rgba(233, 127, 37, 0.1);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.compliance-icon i {
	font-size: 2rem;
	color: var(--primary);
}

.compliance-details {
	margin-top: 15px;
}

/* Single Article Page Styles */
.article-header {
	padding: 120px 0 50px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.breadcrumb {
	background: none;
	padding: 0;
	margin-bottom: 20px;
}

.breadcrumb-item a {
	color: var(--primary);
	text-decoration: none;
}

.breadcrumb-item.active {
	color: #6c757d;
}

.article-meta-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.article-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.3;
}

.article-excerpt {
	font-size: 1.2rem;
	color: #6c757d;
	margin-bottom: 30px;
	line-height: 1.6;
}

.article-author-header {
	display: flex;
	align-items: center;
	gap: 15px;
}

.article-featured-image {
	padding: 0 0 50px 0;
}

.featured-image-container {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.placeholder-image.large {
	height: 400px;
	font-size: 4rem;
}

.placeholder-image.small {
	height: 80px;
}

.placeholder-image.small i {
	font-size: 1.5rem;
	margin-bottom: 5px;
}

.article-content-section {
	padding: 50px 0 100px 0;
}

.article-content {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #333;
}

.article-content h3 {
	margin: 40px 0 20px 0;
	font-size: 1.8rem;
	color: var(--dark);
}

.article-content h4 {
	margin: 30px 0 15px 0;
	font-size: 1.4rem;
	color: var(--dark);
}

.article-content p {
	margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
	margin-bottom: 25px;
	padding-left: 25px;
}

.article-content li {
	margin-bottom: 8px;
}

.article-tags {
	margin: 40px 0;
	padding: 20px 0;
	border-top: 1px solid #e9ecef;
	border-bottom: 1px solid #e9ecef;
}

.article-tags h5 {
	margin-bottom: 15px;
	font-size: 1rem;
	color: var(--dark);
}

.tags-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.tag-link {
	background: #f8f9fa;
	padding: 5px 12px;
	border-radius: 15px;
	text-decoration: none;
	color: #6c757d;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

.tag-link:hover {
	background: var(--primary);
	color: white;
	text-decoration: none;
}

.author-bio {
	background: #f8f9fa;
	padding: 30px;
	border-radius: 15px;
	margin: 40px 0;
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.author-avatar.large {
	width: 80px;
	height: 80px;
	flex-shrink: 0;
}

.author-details h4 {
	margin-bottom: 5px;
	font-size: 1.3rem;
}

.author-title {
	color: var(--primary);
	font-weight: 600;
	margin-bottom: 10px;
}

.author-description {
	color: #6c757d;
	margin-bottom: 15px;
	line-height: 1.6;
}

.author-social {
	display: flex;
	gap: 10px;
}

.author-social a {
	color: #6c757d;
	font-size: 1.2rem;
	transition: color 0.3s ease;
}

.author-social a:hover {
	color: var(--primary);
}

.article-share {
	margin: 40px 0;
}

.article-share h5 {
	margin-bottom: 15px;
	font-size: 1rem;
	color: var(--dark);
}

.share-buttons {
	display: flex;
	gap: 10px;
}

.share-btn {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: white;
	transition: all 0.3s ease;
	font-size: 1.1rem;
}

.share-btn.linkedin {
	background-color: #0077b5;
}

.share-btn.twitter {
	background-color: #1da1f2;
}

.share-btn.facebook {
	background-color: #4267B2;
}

.share-btn.email {
	background-color: #6c757d;
}

.share-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	color: white;
}

.article-sidebar {
	padding-left: 30px;
}

.sidebar-widget {
	background: white;
	padding: 25px;
	border-radius: 15px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
	margin-bottom: 30px;
}

.sidebar-widget h4 {
	margin-bottom: 20px;
	font-size: 1.2rem;
	color: var(--dark);
	border-bottom: 2px solid var(--primary);
	padding-bottom: 10px;
}

.toc-list {
	list-style: none;
	padding: 0;
}

.toc-list li {
	margin-bottom: 8px;
}

.toc-list a {
	color: #6c757d;
	text-decoration: none;
	font-size: 0.9rem;
	display: block;
	padding: 5px 0;
	transition: color 0.3s ease;
}

.toc-list a:hover {
	color: var(--primary);
}

.related-articles {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.related-article {
	display: flex;
	gap: 15px;
	align-items: flex-start;
}

.related-article-image {
	width: 80px;
	flex-shrink: 0;
}

.related-article-content h5 {
	font-size: 0.9rem;
	margin-bottom: 5px;
	line-height: 1.4;
}

.related-article-content h5 a {
	color: var(--dark);
	text-decoration: none;
	transition: color 0.3s ease;
}

.related-article-content h5 a:hover {
	color: var(--primary);
}

.related-date {
	color: #6c757d;
	font-size: 0.8rem;
}

.newsletter-widget {
	background: linear-gradient(135deg, var(--primary), #1a46e0) !important;
	color: white;
}

.newsletter-widget h4 {
	color: white;
	border-color: rgba(255, 255, 255, 0.3);
}

.newsletter-widget p {
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 20px;
}

.sidebar-newsletter {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.sidebar-newsletter .form-control {
	border: none;
	border-radius: 8px;
	padding: 12px 15px;
}

.sidebar-newsletter .btn {
	border-radius: 8px;
	background-color: white;
	color: var(--primary);
	border: none;
	font-weight: 600;
}

.sidebar-newsletter .btn:hover {
	background-color: #f8f9fa;
	transform: none;
	box-shadow: none;
}

.popular-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.popular-tags .tag-link {
	font-size: 0.8rem;
	padding: 4px 10px;
}

@media (max-width: 991px) {
	.article-title {
		font-size: 2rem;
	}

	.article-sidebar {
		padding-left: 0;
		margin-top: 50px;
	}

	.author-bio {
		flex-direction: column;
		text-align: center;
	}

	.author-details {
		text-align: center;
	}

	.share-buttons {
		justify-content: center;
	}
}

@media (max-width: 767px) {
	.article-title {
		font-size: 1.8rem;
	}

	.article-header {
		padding: 100px 0 30px 0;
	}

	.article-meta-header {
		flex-wrap: wrap;
		gap: 10px;
	}

	.placeholder-image.large {
		height: 250px;
		font-size: 3rem;
	}
}

/* Contact Page Styles */
.contact-method-card {
	background: white;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
	text-align: center;
	height: 100%;
	transition: all 0.3s ease;
	border-top: 4px solid var(--primary);
}

.contact-method-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-icon {
	width: 70px;
	height: 70px;
	background: rgba(233, 127, 37, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.contact-icon i {
	color: var(--primary);
	font-size: 2rem;
}

.contact-details {
	margin: 20px 0;
	text-align: left;
}

.contact-details p {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.contact-details i {
	color: var(--primary);
	font-size: 1rem;
	width: 20px;
}

.contact-form-card {
	background: white;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
	height: 100%;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.faq-item {
	background: white;
	padding: 25px;
	border-radius: 15px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
	margin-bottom: 15px;
	color: var(--dark);
	font-size: 1.1rem;
}

.faq-item p {
	color: #6c757d;
	line-height: 1.6;
	margin-bottom: 0;
}

/* Pricing Section Styles */
.pricing-card {
	background: white;
	border-radius: 15px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
}

.pricing-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
	border: 3px solid var(--primary);
	transform: scale(1.05);
}

.pricing-card.featured:hover {
	transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
	position: absolute;
	top: 20px;
	right: -30px;
	background: var(--primary);
	color: white;
	padding: 5px 40px;
	font-size: 0.8rem;
	font-weight: 600;
	transform: rotate(45deg);
	z-index: 1;
}

.pricing-header {
	text-align: center;
	padding: 40px 30px 20px;
	border-bottom: 1px solid #f0f0f0;
}

.pricing-header h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: var(--dark);
}

.price {
	display: flex;
	align-items: baseline;
	justify-content: center;
	margin-bottom: 15px;
}

.currency {
	font-size: 1.2rem;
	color: var(--primary);
	font-weight: 600;
}

.amount {
	font-size: 3rem;
	font-weight: 700;
	color: var(--primary);
	margin: 0 5px;
}

.period {
	font-size: 1rem;
	color: #6c757d;
}

.pricing-description {
	color: #6c757d;
	font-size: 0.9rem;
	margin-bottom: 0;
}

.pricing-features {
	padding: 30px;
	flex-grow: 1;
}

.pricing-features ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pricing-features li {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	color: var(--dark);
}

.pricing-features li i {
	color: #28a745;
	margin-right: 10px;
	font-size: 1.2rem;
}

.pricing-footer {
	padding: 20px 30px 30px;
	text-align: center;
}

.pricing-footer .btn {
	width: 100%;
}

@media (max-width: 991px) {
	.pricing-card.featured {
		transform: none;
		margin-top: 0;
	}

	.pricing-card.featured:hover {
		transform: translateY(-10px);
	}
}

@media (max-width: 767px) {
	.pricing-header {
		padding: 30px 20px 15px;
	}

	.pricing-features {
		padding: 20px;
	}

	.pricing-footer {
		padding: 15px 20px 25px;
	}

	.amount {
		font-size: 2.5rem;
	}
}

.blockquote-footer {
	margin-top: -1rem;
	margin-bottom: 1rem;
	font-size: .875em;
	color: #6c757d;
	background-color: transparent;
	font-size: 0.9rem;
	padding: 20px;
}

.blockquote {
	font-size: 1.1rem;
}

.insight-callout {
	text-align: left !important;
}

.insight-callout h4 {
	text-align: center;
	;
}

.cost-breakdown .material-icons {
	vertical-align: top;
	margin-right: 5px;
	color: var(--primary)
}

.card {
	padding: 40px 30px;
	border-radius: 15px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
	background-color: white;
	text-align: left;
	border: none;
}

.card.text-center p {
	text-align: left !important;
}

.copyright {
	text-align: center;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
}

.copyright a {
	color: white;
	text-decoration: none;
	font-size: 0.9rem;
}

.copyright a:hover {
	color: var(--primary);
	text-decoration: none;
}

footer .footer-links a:hover {
	color: var(--primary);
}

.sources-section a {
	color: #363636;
}

.sources-section a:hover {
	color: var(--primary);
}

.navbar-toggler {
	background-color: #fff;
}