@media (max-width: 500px) {
	.hero-section {
		padding-top: 100px !important;
	}
}

.hero-section {
	position: relative;
	overflow: hidden;
}

/* ✅ Background Video */
.hero-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0; /* lowest layer */
}

/* ✅ Dark overlay above video */
.video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.55);
	z-index: 1;
}

/* Gradient Light Overlay */
.hero-section .gradient-overlay {
	position: absolute;
	top: -20%;
	left: -20%;
	width: 60%;
	height: 60%;
	background: radial-gradient(
		circle at top left,
		rgba(243, 156, 18, 0.5),
		transparent 70%
	);
	border-radius: 50%;
	pointer-events: none;
	z-index: 2; /* ✅ above video overlay */
}

/* Floating Circles BG */
.floating-circles {
	position: absolute;
	inset: 0;
	overflow: hidden;
	z-index: 3; /* ✅ above gradient */
}

.floating-circles .circle {
	position: absolute;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: rgba(255, 165, 0, 0.12);
	filter: blur(6px);
	backdrop-filter: blur(4px);
}

/* Individual positions */
.floating-circles .c1 {
	top: 10%;
	left: 8%;
}
.floating-circles .c2 {
	bottom: 15%;
	left: 25%;
	width: 200px;
	height: 200px;
}
.floating-circles .c3 {
	top: 20%;
	right: 10%;
	background: rgba(100, 200, 255, 0.12);
}
.floating-circles .c4 {
	bottom: 10%;
	right: 20%;
	width: 140px;
	height: 140px;
	background: rgba(255, 100, 200, 0.12);
}

/* ✅ Main Content */
.hero-section .container-fluid {
	position: relative;
	z-index: 4; /* highest layer */
}

/* Title Style */
.hero-title {
	/* font-size: 3.3rem;
	font-weight: 700;
	line-height: 1.2; */
	color: #ffffff;
}

.hero-title .highlight {
	color: var(--bs-primary);
	position: relative;
	z-index: 1;
}

.hero-title .highlight::before {
	content: "";
	position: absolute;
	left: -10px;
	bottom: 6px;
	width: 115%;
	height: 55%;
	background: rgba(255, 224, 104, 0.11);

	z-index: -1;
	transform: rotate(-2deg);
	border-radius: 6px;
}

/* Paragraph */
.hero-text {
	font-size: 1.05rem;
	color: #d3d3d3;
	max-width: 580px;
}

/* Primary CTA Button */
.btn-cta {
	background: var(--bs-primary);
	color: #101010;
	padding: 14px 30px;
	font-weight: 600;
	border-radius: 8px;
	text-decoration: none;
	transition: 0.3s ease;
}

.btn-cta:hover {
	background: #00c788;
}

/* Outline CTA Button */
.btn-outline-cta {
	border: 2px solid var(--bs-primary);
	color: var(--bs-primary);
	padding: 14px 30px;
	font-weight: 600;
	border-radius: 50px;
	text-decoration: none;
	transition: 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.btn-outline-cta:hover {
	background: var(--bs-primary);
	color: #101010;
}

.arrow {
	font-size: 18px;
	transition: 0.3s ease;
}

.btn-outline-cta:hover .arrow {
	transform: translate(5px, -5px);
}

/* Responsive */
@media (max-width: 767px) {
	.hero-title {
		font-size: 2.3rem;
		text-align: center;
	}
	.hero-text {
		text-align: center;
		margin: auto;
	}
	.d-flex.gap-3 {
		justify-content: center;
	}
}

.scrolling-text {
	overflow: hidden;
	position: relative;
}

.scrolling-inner {
	display: flex;
	white-space: nowrap;
}

.scrolling-track {
	display: inline-block;
	padding-right: 100px;
	animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

.scroll-line {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.2em;
}

/* ===== SERVICES CARDS SLIDER ===== */
:root {
	--brand: #f39c12;
	--brand-light: rgba(243, 156, 18, 0.18);
	--brand-mid: rgba(243, 156, 18, 0.28);
	--brand-strong: rgba(243, 156, 18, 0.55);
}

/* Main Card Styling */
.service-card {
	background: linear-gradient(145deg, #1a1b1d, #232427);
	border-radius: 20px;
	padding: 36px 20px;
	min-height: 400px;
	transition: all 0.35s ease;
	border: 1px solid rgba(243, 156, 18, 0.12);
	position: relative;
	overflow: hidden;
}

/* Hover Effect */
.service-card:hover {
	transform: translateY(-12px);
	box-shadow: 0 20px 40px rgba(243, 156, 18, 0.25);
	border-color: var(--brand-strong);
}

/* Floating Glow Accent */
.service-card::before {
	content: "";
	position: absolute;
	width: 150%;
	height: 150%;
	top: -100%;
	left: -50%;
	background: radial-gradient(circle, var(--brand-light), transparent 65%);
	transform: rotate(45deg);
	transition: all 0.6s ease;
}

.service-card:hover::before {
	top: -30%;
	left: -20%;
}

/* Icon Styling */
.icon-box {
	width: 75px;
	height: 75px;
	background: var(--brand-light);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
	font-size: 2rem;
	color: var(--brand);
	transition: 0.35s ease-in-out;
}

.service-card:hover .icon-box {
	background: var(--brand);
	color: #101010;
	transform: scale(1.12);
}

/* Button Styling */
.btn-learn {
	display: inline-block;
	padding: 10px 26px;
	border-radius: 50px;
	border: 2px solid var(--brand);
	font-weight: 600;
	color: var(--brand);
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-learn:hover {
	background: var(--brand);
	color: #101010;
	transform: translateX(5px);
}

/* Title Style */
.service-card h5 {
	margin-top: 20px;
	color: #fff;
}

/* Description Text */
.service-card p {
	color: #e5e5e5;
}

/* Cursor Color for Typed.js */
.typed-cursor {
	color: var(--brand);
}

/* Responsive */
@media (max-width: 768px) {
	.service-card {
		min-height: 350px;
	}
}

/* ======== OUR PROCESSES / WHAT WE DO ====== */

/* Section Styling */
.process-section {
	background: #131214;
}

/* Section Heading */
.section-heading {
	color: #ffffff;
	font-size: 3rem;
	position: relative;
}

.section-heading::after {
	content: "";
	width: 80px;
	height: 4px;
	border-radius: 2px;
	background: #f39c12;
	display: block;
	margin: 10px auto 0;
}

/* Process Card */
.process-card {
	background: #27272a;
	border-radius: 18px;
	transition: 0.35s ease;
	border: 1px solid rgba(243, 156, 18, 0.12);
	position: relative;
	overflow: hidden;
}

/* Glow animation on hover */
.process-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 35px rgba(243, 156, 18, 0.28);
	border-color: rgba(243, 156, 18, 0.5);
}

/* Accent Glow */
.process-card::before {
	content: "";
	position: absolute;
	width: 140%;
	height: 140%;
	background: radial-gradient(
		circle,
		rgba(243, 156, 18, 0.15),
		transparent 70%
	);
	top: -90%;
	left: -60%;
	opacity: 0;
	transition: 0.55s ease;
}

.process-card:hover::before {
	top: -30%;
	left: -20%;
	opacity: 1;
}

/* Icons */
.process-icon {
	width: 80px;
	height: 80px;
	margin: auto;
	background: rgba(243, 156, 18, 0.18);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.4rem;
	color: #f39c12;
	transition: 0.35s ease-in-out;
}

.process-card:hover .process-icon {
	background: #f39c12;
	color: #101010;
	transform: scale(1.1);
}

/* Highlight Text Card */
.highlight-card {
	background: linear-gradient(145deg, #1a1b1c, #27272a);
	border-radius: 20px;
	border: 1px solid rgba(243, 156, 18, 0.15);
	box-shadow: 0 0 25px rgba(243, 156, 18, 0.06);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
	.section-heading {
		font-size: 2.3rem;
	}
	.process-card {
		padding: 25px;
	}
}

/* ===== CONTACT SECTION ===== */

/* Section */
.contact-section {
	background: #131214;
	color: #ffffff;
}

/* Heading */
.section-heading {
	font-size: 3rem;
	color: #ffffff;
	position: relative;
}

.section-heading::after {
	content: "";
	display: block;
	width: 80px;
	height: 4px;
	background: #f39c12;
	border-radius: 3px;
	margin: 10px auto 0;
}

/* Contact Card */
.contact-card {
	background: #27272a;
	border-radius: 20px;
	border: 1px solid rgba(243, 156, 18, 0.12);
	box-shadow: 0 15px 35px rgba(243, 156, 18, 0.08);
	transition: all 0.4s ease;
}

.contact-card:hover {
	box-shadow: 0 20px 45px rgba(243, 156, 18, 0.2);
	transform: translateY(-6px);
	border-color: rgba(243, 156, 18, 0.35);
}

/* Form Elements */
.form-label {
	color: #ffffff;
	font-weight: 500;
}

.form-input {
	background: #1e1e20;
	border: 1px solid rgba(243, 156, 18, 0.25);
	color: #ffffff;
	border-radius: 10px;
	padding: 10px 12px;
	transition: 0.3s ease;
}

.form-input:focus {
	border-color: #f39c12;
	box-shadow: 0 0 8px rgba(243, 156, 18, 0.3);
	outline: none;
}

/* Submit Button */
.btn-submit {
	background: #f39c12;
	color: #131214;
	border: none;
	border-radius: 50px;
	font-weight: 600;
	padding: 12px 0;
	transition: all 0.3s ease;
}

.btn-submit:hover {
	background: #ffa928;
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(243, 156, 18, 0.3);
}

/* Social Icons */
.icon-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	color: #f39c12;
	border: 2px solid rgba(243, 156, 18, 0.35);
	font-size: 2rem;
	transition: all 0.35s ease;
	background: rgba(255, 255, 255, 0.03);
}

.icon-link:hover {
	background: #f39c12;
	color: #131214;
	transform: scale(1.1);
	box-shadow: 0 0 20px rgba(243, 156, 18, 0.4);
}

/* Call Button */
.btn-call {
	display: inline-block;
	background: transparent;
	border: 2px solid #f39c12;
	color: #ffffff;
	font-weight: 600;
	padding: 14px 28px;
	border-radius: 50px;
	text-decoration: none;
	transition: 0.35s ease;
}

.btn-call:hover {
	background: #f39c12;
	color: #131214;
	transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
	.section-heading {
		font-size: 2.2rem;
	}
	.icon-link {
		width: 65px;
		height: 65px;
		font-size: 1.7rem;
	}
}

/* ======= NAVBAR ====== */
/* ===== Navbar Base ===== */
.main-navbar {
	background: rgba(19, 18, 20, 0.95);
	backdrop-filter: blur(6px);
	border-bottom: 1px solid rgba(243, 156, 18, 0.15);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	z-index: 1000;
}

/* Logo */
.main-navbar .logo {
	max-height: 52px;
	transition: transform 0.3s ease;
}
.main-navbar .logo:hover {
	transform: scale(1.05);
}

/* Links */
.main-navbar .nav-link {
	color: #ffffff;
	font-weight: 500;
	font-size: 1.1rem;
	margin: 0 0.75rem;
	position: relative;
	transition: color 0.3s ease;
}
.main-navbar .nav-link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 0%;
	height: 3px;
	background: #f39c12;
	border-radius: 2px;
	transition: width 0.3s ease;
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
	color: #f39c12;
}
.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {
	width: 100%;
}

/* CTA Button */
.btn-getstarted {
	background: transparent;
	border: 2px solid #f39c12;
	color: #ffffff;
	font-weight: 600;
	border-radius: 50px;
	padding: 8px 22px;
	transition: all 0.3s ease;
}
.btn-getstarted:hover {
	background: #f39c12;
	color: #131214;
	transform: translateY(-2px);
	box-shadow: 0 0 15px rgba(243, 156, 18, 0.4);
}

/* Toggler */
.navbar-toggler {
	border: none;
}
.navbar-toggler-icon {
	background-image: none;
	width: 24px;
	height: 2px;
	background-color: #f39c12;
	position: relative;
	transition: all 0.3s;
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
	content: "";
	position: absolute;
	left: 0;
	width: 24px;
	height: 2px;
	background-color: #f39c12;
	transition: all 0.3s;
}
.navbar-toggler-icon::before {
	top: -7px;
}
.navbar-toggler-icon::after {
	top: 7px;
}

/* When toggled */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	background-color: transparent;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
	transform: rotate(45deg);
	top: 0;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
	transform: rotate(-45deg);
	top: 0;
}

/* Responsive Collapse Menu */
@media (max-width: 991.98px) {
	.main-navbar .navbar-collapse {
		background: #27272a;
		border-radius: 12px;
		padding: 1rem;
		margin-top: 0.5rem;
	}
	.main-navbar .nav-link {
		display: block;
		text-align: center;
		margin: 0.5rem 0;
	}
	.btn-getstarted {
		width: 100%;
		text-align: center;
		margin-top: 0.5rem;
	}
}

/* ==== PROJECT CARD SLIDER ===== */
.projects-section {
	background: #131214;
}

/* Heading */
.section-heading {
	color: #ffffff;
	font-size: 3rem;
	position: relative;
}
.section-heading::after {
	content: "";
	display: block;
	width: 90px;
	height: 4px;
	background: #f39c12;
	margin: 10px auto 0;
	border-radius: 3px;
}

/* Swiper */
.projectSwiper {
	padding-bottom: 60px;
}
.swiper-slide {
	display: flex;
	justify-content: center;
}
.swiper-button-next,
.swiper-button-prev {
	color: #f39c12;
	transition: 0.3s;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
	color: #ffffff;
}
.swiper-pagination-bullet {
	background: rgba(243, 156, 18, 0.4);
}
.swiper-pagination-bullet-active {
	background: #f39c12;
}

/* Project Card */
.project-card {
	width: 100%;
	max-width: 500px;
	min-height: 450px;
	background: #27272a;
	border-radius: 18px;
	border: 1px solid rgba(243, 156, 18, 0.15);
	transition: all 0.35s ease;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.project-card:hover {
	transform: translateY(-8px);
	border-color: rgba(243, 156, 18, 0.4);
	box-shadow: 0 15px 35px rgba(243, 156, 18, 0.25);
}

/* Project Image */
.project-img {
	width: 100%;
	height: 250px;
	border-radius: 10px;
	object-fit: cover;
	border: 1px solid rgba(243, 156, 18, 0.15);
	transition: 0.4s ease;
}
.project-card:hover .project-img {
	transform: scale(1.03);
}

/* Badges */
.badges .badge {
	background: rgba(243, 156, 18, 0.15);
	color: #f39c12;
	font-weight: 500;
	border-radius: 50px;
	margin: 2px;
	padding: 6px 12px;
}

/* Button */
.btn-visit {
	display: inline-block;
	border: 2px solid #f39c12;
	color: #ffffff;
	border-radius: 50px;
	padding: 8px 10px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}
.btn-visit:hover {
	background: #f39c12;
	color: #131214;
	box-shadow: 0 0 15px rgba(243, 156, 18, 0.4);
}

/* Responsive */
@media (max-width: 991px) {
	.project-card {
		min-height: 550px;
		max-width: 400px;
	}
}
@media (max-width: 767px) {
	.project-card {
		min-height: 500px;
		max-width: 90%;
	}
	.section-heading {
		font-size: 2.2rem;
	}
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
	box-shadow: 0px 0 20px color-mix(in srgb, var(--bs-primary), transparent 50%);
	box-sizing: content-box;
	padding: 30px;
	margin: 40px 30px;
	min-height: 320px;
	display: flex;
	flex-direction: column;
	text-align: center;
	transition: 0.3s;
}

.testimonials .testimonial-item .stars {
	margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
	color: #ffc107;
	margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
	width: 90px;
	border-radius: 50%;
	border: 4px solid var(--bs-light);
	margin: 0 auto;
}

.testimonials .testimonial-item h3 {
	font-size: 18px;
	font-weight: bold;
	margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
	font-size: 14px;
	color: color-mix(in srgb, var(--bs-light), transparent 40%);
	margin: 0;
}

.testimonials .testimonial-item p {
	font-style: italic;
	margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
	height: auto;
}

.testimonials .swiper-pagination {
	margin-top: 20px;
	position: relative;
}

.testimonial-item p {
	color: var(--bs-light);
}

.testimonial-item h3 {
	color: var(--bs-primary);
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: color-mix(in srgb, var(--bs-primary), transparent 85%);
	opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--bs-light);
}

.testimonials .swiper-slide {
	opacity: 0.3;
}

.testimonial-item {
	background-color: #27272a !important;
}

@media (max-width: 1199px) {
	.testimonials .swiper-slide-active {
		opacity: 1;
	}

	.testimonials .swiper-pagination {
		margin-top: 0;
	}

	.testimonials .testimonial-item {
		margin: 40px 20px;
	}
}

@media (min-width: 1200px) {
	.testimonials .swiper-slide-next {
		opacity: 1;
		transform: scale(1.12);
	}
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
	box-shadow: 0px 0 30px color-mix(in srgb, var(--bs-primary), transparent 92%);
	overflow: hidden;
	text-align: center;
	border-radius: 5px;
	transition: 0.3s;
}

.team .team-member .member-img {
	position: relative;
	overflow: hidden;
}

.team .team-member .member-img:after {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	background: url(../img/team-shape.svg) no-repeat center bottom;
	background-size: contain;
	z-index: 1;
}

.team .team-member .social {
	position: absolute;
	right: -100%;
	top: 30px;
	opacity: 0;
	border-radius: 4px;
	transition: 0.5s;
	background: color-mix(in srgb, var(--bs-dark), transparent 60%);
	z-index: 2;
}

.team .team-member .social a {
	transition: color 0.3s;
	color: color-mix(in srgb, var(--bs-primary), transparent 50%);
	margin: 15px 12px;
	display: block;
	line-height: 0;
	text-align: center;
}

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

.team .team-member .social i {
	font-size: 18px;
}

.team .team-member .member-info {
	background-color: var(--bs-light);
	padding: 10px 15px 20px 15px;
}

.team .team-member .member-info h4 {
	font-weight: 700;
	margin-bottom: 5px;
	font-size: 25px;
	color: var(--bs-dark);
}

.team .team-member .member-info span {
	display: block;
	font-size: 16px;
	font-weight: 400;
	color: color-mix(in srgb, var(--bs-dark), transparent 50%);
}

.team .team-member .member-info p {
	font-style: italic;
	font-size: 14px;
	padding-top: 15px;
	line-height: 26px;
	color: color-mix(in srgb, var(--bs-primary), transparent 30%);
}

.team .team-member:hover {
	transform: scale(1.08);
	box-shadow: 0px 0 30px color-mix(in srgb, var(--bs-primary), transparent 85%);
}

.team .team-member:hover .social {
	right: 8px;
	opacity: 1;
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts .post-item {
	box-shadow: 0px 2px 20px
		color-mix(in srgb, var(--bs-primary), transparent 92%);
	transition: 0.3s;
}

.recent-posts .post-item .post-img img {
	transition: 0.5s;
}

.recent-posts .post-item .post-date {
	position: absolute;
	right: 0;
	bottom: 0;
	background-color: var(--bs-primary);
	color: var(--bs-dark);
	text-transform: uppercase;
	font-size: 13px;
	padding: 6px 12px;
	font-weight: 500;
}

.recent-posts .post-item .post-content {
	padding: 30px;
}

.post-content {
	background-color: var(--bs-light);
}

.recent-posts .post-item .post-title {
	color: var(--bs-dark);
	font-size: 20px;
	font-weight: 700;
	transition: 0.3s;
	margin-bottom: 15px;
}

.recent-posts .post-item .meta i {
	font-size: 16px;
	color: var(--bs-dark);
}

.recent-posts .post-item .meta span {
	font-size: 15px;
	color: color-mix(in srgb, var(--bs-dark), transparent 50%);
}

.recent-posts .post-item hr {
	color: color-mix(in srgb, var(--bs-dark), transparent 80%);
	margin: 20px 0;
}

.recent-posts .post-item .readmore {
	display: flex;
	align-items: center;
	font-weight: 600;
	line-height: 1;
	transition: 0.3s;
	color: color-mix(in srgb, var(--bs-info), transparent 40%);
}

.recent-posts .post-item .readmore i {
	line-height: 0;
	margin-left: 6px;
	font-size: 16px;
}

/* .recent-posts .post-item:hover .post-title,
.recent-posts .post-item:hover .readmore {
	color: var(--bs-light);
} */

.recent-posts .post-item:hover .post-img img {
	transform: scale(1.1);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
	padding-bottom: 30px;
}

.blog-details .article {
	padding: 30px;
	background-color: #27272a;
	/* box-shadow: 0 4px 16px color-mix(in srgb, var(--bs-primary), transparent 90%); */
}

.blog-details .post-img {
	margin: -30px -30px 20px -30px;
	overflow: hidden;
}

.blog-details .title {
	color: var(--bs-light);
	font-size: 28px;
	font-weight: 700;
	padding: 0;
	margin: 30px 0;
}

.blog-details .content {
	margin-top: 20px;
	color: var(--bs-light);
}

.blog-details .content h3 {
	font-size: 22px;
	margin-top: 30px;
	font-weight: bold;
}

.blog-details .content blockquote {
	overflow: hidden;
	background-color: color-mix(in srgb, var(--bs-primary), transparent 95%);
	padding: 60px;
	position: relative;
	text-align: center;
	margin: 20px 0;
}

.blog-details .content blockquote p {
	color: var(--bs-primary);
	line-height: 1.6;
	margin-bottom: 0;
	font-style: italic;
	font-weight: 500;
	font-size: 22px;
}

.blog-details .content blockquote:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background-color: var(--bs-light);
	margin-top: 20px;
	margin-bottom: 20px;
}

.blog-details .meta-top {
	margin-top: 20px;
	color: color-mix(in srgb, var(--bs-primary), transparent 40%);
}

.blog-details .meta-top ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	align-items: center;
	padding: 0;
	margin: 0;
}

.blog-details .meta-top ul li + li {
	padding-left: 20px;
}

.blog-details .meta-top i {
	font-size: 16px;
	margin-right: 8px;
	line-height: 0;
	color: color-mix(in srgb, var(--bs-primary), transparent 40%);
}

.blog-details .meta-top a {
	color: color-mix(in srgb, var(--bs-primary), transparent 40%);
	font-size: 14px;
	display: inline-block;
	line-height: 1;
}

.blog-details .meta-bottom {
	padding-top: 10px;
	border-top: 1px solid color-mix(in srgb, var(--bs-primary), transparent 90%);
}

.blog-details .meta-bottom i {
	color: color-mix(in srgb, var(--bs-primary), transparent 40%);
	display: inline;
}

.blog-details .meta-bottom a {
	color: color-mix(in srgb, var(--bs-primary), transparent 40%);
	transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
	color: var(--bs-light);
}

.blog-details .meta-bottom .cats {
	list-style: none;
	display: inline;
	padding: 0 20px 0 0;
	font-size: 14px;
}

.blog-details .meta-bottom .cats li {
	display: inline-block;
}

.blog-details .meta-bottom .tags {
	list-style: none;
	display: inline;
	padding: 0;
	font-size: 14px;
}

.blog-details .meta-bottom .tags li {
	display: inline-block;
}

.blog-details .meta-bottom .tags li + li::before {
	padding-right: 6px;
	color: var(--bs-primary);
	content: ",";
}

.blog-details .meta-bottom .share {
	font-size: 16px;
}

.blog-details .meta-bottom .share i {
	padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
	padding: 10px 0 40px 0;
}

.blog-author .author-container {
	padding: 20px;
	box-shadow: 0 4px 16px color-mix(in srgb, var(--bs-primary), transparent 90%);
}

.blog-author img {
	max-width: 120px;
	margin-right: 20px;
}

.blog-author h4 {
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 0px;
	padding: 0;
	color: color-mix(in srgb, var(--bs-primary), transparent 20%);
}

.blog-author .social-links {
	margin: 0 10px 10px 0;
}

.blog-author .social-links a {
	color: color-mix(in srgb, var(--bs-primary), transparent 60%);
	margin-right: 5px;
}

.blog-author p {
	font-style: italic;
	color: color-mix(in srgb, var(--bs-primary), transparent 30%);
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
	padding: 10px 0;
}

.blog-comments .comments-count {
	font-weight: bold;
}

.blog-comments .comment {
	margin-top: 30px;
	position: relative;
}

.blog-comments .comment .comment-img {
	margin-right: 14px;
}

.blog-comments .comment .comment-img img {
	width: 60px;
}

.blog-comments .comment h5 {
	font-size: 16px;
	margin-bottom: 2px;
}

.blog-comments .comment h5 a {
	font-weight: bold;
	color: var(--bs-primary);
	transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
	color: var(--bs-light);
}

.blog-comments .comment h5 .reply {
	padding-left: 10px;
	color: color-mix(in srgb, var(--bs-primary), transparent 20%);
}

.blog-comments .comment h5 .reply i {
	font-size: 20px;
}

.blog-comments .comment time {
	display: block;
	font-size: 14px;
	color: color-mix(in srgb, var(--bs-primary), transparent 40%);
	margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
	padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
	padding-top: 10px;
}

.comment-form form {
	margin-top: 30px;
	padding: 30px;
	box-shadow: 0 4px 16px color-mix(in srgb, var(--bs-primary), transparent 90%);
}

.comment-form form h4 {
	font-weight: bold;
	font-size: 22px;
}

.comment-form form p {
	font-size: 14px;
}

.comment-form form input {
	background-color: var(--background-color);
	color: var(--bs-primary);
	border: 1px solid color-mix(in srgb, var(--bs-primary), transparent 70%);
	font-size: 14px;
	border-radius: 4px;
	padding: 10px 10px;
}

.comment-form form input:focus {
	box-shadow: none;
	border-color: var(--bs-light);
}

.comment-form form textarea {
	background-color: var(--background-color);
	color: var(--bs-primary);
	border: 1px solid color-mix(in srgb, var(--bs-primary), transparent 70%);
	border-radius: 4px;
	padding: 10px 10px;
	font-size: 14px;
	height: 120px;
}

.comment-form form textarea:focus {
	box-shadow: none;
	border-color: var(--bs-light);
}

.comment-form form .form-group {
	margin-bottom: 25px;
}

.comment-form form .btn-primary {
	border-radius: 4px;
	padding: 10px 20px;
	border: 0;
	background-color: var(--bs-light);
	color: var(--bs-light);
}

.comment-form form .btn-primary:hover {
	color: var(--bs-light);
	background-color: color-mix(in srgb, var(--bs-light), transparent 20%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
	padding: 30px;
	margin: 60px 0 30px 0;
	background-color: #27272a;
	box-shadow: 0 4px 16px color-mix(in srgb, var(--bs-primary), transparent 90%);
}

.widget-title {
	color: var(--bs-light);
	font-size: 20px;
	font-weight: 700;
	padding: 0;
	margin: 0 0 20px 0;
}

.widget-item {
	margin-bottom: 40px;
}

.widget-item:last-child {
	margin-bottom: 0;
}

.search-widget form {
	background: var(--bs-dark);
	border: 1px solid color-mix(in srgb, var(--bs-light), transparent 70%);
	padding: 3px 10px;
	position: relative;
	transition: 0.3s;
}

.search-widget form input[type="text"] {
	border: 0;
	padding: 4px;
	border-radius: 4px;
	width: calc(100% - 40px);
	background-color: var(--bs-dark);
	color: var(--bs-light);
}

.search-widget form input[type="text"]:focus {
	outline: none;
}

.search-widget form button {
	background: var(--bs-light);
	color: var(--bs-dark);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	border: 0;
	font-size: 16px;
	padding: 0 15px;
	margin: -1px;
	transition: 0.3s;
	border-radius: 0 4px 4px 0;
	line-height: 0;
}

.search-widget form button i {
	line-height: 0;
}

.search-widget form button:hover {
	background: color-mix(in srgb, var(--bs-light), transparent 20%);
}

.search-widget form:is(:focus-within) {
	border-color: var(--bs-light);
}

.categories-widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.categories-widget ul li {
	padding-bottom: 10px;
}

.categories-widget ul li:last-child {
	padding-bottom: 0;
}

.categories-widget ul a {
	color: color-mix(in srgb, var(--bs-primary), transparent 20%);
	transition: 0.3s;
}

.categories-widget ul a:hover {
	color: var(--bs-light);
}

.categories-widget ul a span {
	padding-left: 5px;
	color: color-mix(in srgb, var(--bs-primary), transparent 50%);
	font-size: 14px;
}

.recent-posts-widget .post-item {
	display: flex;
	margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
	margin-bottom: 0;
}

.recent-posts-widget .post-item img {
	width: 80px;
	margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
	color: var(--bs-primary);
	transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
	color: var(--bs-light);
}

.recent-posts-widget .post-item time {
	display: block;
	font-style: italic;
	font-size: 14px;
	color: color-mix(in srgb, var(--bs-primary), transparent 50%);
}

.tags-widget {
	margin-bottom: -10px;
}

.tags-widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.tags-widget ul li {
	display: inline-block;
}

.tags-widget ul a {
	color: color-mix(in srgb, var(--bs-primary), transparent 30%);
	font-size: 14px;
	padding: 6px 14px;
	margin: 0 6px 8px 0;
	border: 1px solid color-mix(in srgb, var(--bs-primary), transparent 60%);
	display: inline-block;
	transition: 0.3s;
}

.tags-widget ul a:hover {
	background: var(--bs-light);
	color: var(--bs-dark);
	border: 1px solid var(--bs-light);
}

.tags-widget ul a span {
	padding-left: 5px;
	color: color-mix(in srgb, var(--bs-primary), transparent 60%);
	font-size: 14px;
}
