/* About modern */
.about-modern {
	padding: 120px 0;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.about-modern h2 {
	font-size: 48px;
	font-weight: 700;
	margin: 0 0 12px;
	text-align: left;
	background: linear-gradient(135deg, #1e293b 0%, #64748b 100%);
	/* Force dark gradient on titles */
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.about-modern-wrap {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 40px;
	align-items: center;
}

.about-modern-text p {
	color: var(--muted);
	font-size: 18px;
	line-height: 1.7;
	margin: 0 0 16px;
}

.about-highlights {
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
	display: grid;
	gap: 8px;
}

.about-highlights li {
	color: var(--muted);
	font-weight: 500;
}

.about-highlights i {
	color: var(--success);
	margin-right: 8px;
}

.about-modern-photo {
	display: flex;
	justify-content: center;
}

.about-photo-frame {
	border-radius: 20px;
	padding: 12px;
	background: var(--gradient-primary);
}

.about-photo-frame img {
	display: block;
	border-radius: 14px;
	background: var(--card);
}

@media (max-width: 768px) {
	.about-modern h2 {
		font-size: 36px;
		text-align: center;
	}

	.about-modern-wrap {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

/* Testimonials Modern Grid (for new markup) */
.testimonials-modern {
	padding: 120px 0;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.testimonials-modern h2 {
	text-align: center;
	font-size: 48px;
	font-weight: 700;
	margin: 0 0 12px;
	background: linear-gradient(135deg, #1e293b 0%, #64748b 100%);
	/* Force dark gradient on titles */
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.testimonials-modern .section-subtitle {
	text-align: center;
	font-size: 18px;
	color: var(--muted);
	margin: 0 0 40px;
}

.t-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}

.t-card {
	position: relative;
	background: var(--gradient-light);
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 24px;
	transition: all 0.3s ease;
}

.t-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-xl);
}

.t-quote {
	position: absolute;
	top: 8px;
	left: 12px;
	font-size: 40px;
	line-height: 1;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	opacity: 0.6;
}

.t-text {
	margin: 16px 0 20px;
	color: var(--muted);
	line-height: 1.7;
	font-size: 16px;
}

.t-author {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.t-meta {
	display: flex;
	flex-direction: column;
}

.t-meta strong {
	color: var(--fg);
	font-weight: 600;
}

.t-meta span {
	color: var(--muted);
	font-size: 12px;
}

.t-card h4 {
	color: #1e293b;
	margin: 0;
}

.t-card p {
	color: #64748b;
	font-size: 15px;
	margin-bottom: 0px;
}

.t-stars i {
	color: var(--accent);
	font-size: 14px;
}

/* Modern Skills Section */
.skills-modern {
	padding: 120px 0;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.skills-modern h2 {
	text-align: center;
	font-size: 48px;
	font-weight: 700;
	margin: 0 0 12px;
	background: linear-gradient(135deg, #1e293b 0%, #64748b 100%);
	/* Force dark text for visibility */
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.skills-modern .section-subtitle {
	text-align: center;
	font-size: 18px;
	color: var(--muted);
	margin: 0 0 40px;
}

.skills-grid-modern {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 24px;
}

.skill-card {
	background: var(--gradient-light);
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 20px;
	transition: all 0.3s ease;
}

.skill-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-xl);
	border-color: var(--border-light);
}

.skill-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.skill-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--gradient-primary);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
}

.skill-title {
	font-weight: 600;
	color: var(--fg);
	font-size: 16px;
}

.skill-meter {
	position: relative;
	height: 8px;
	background: var(--border);
	border-radius: 6px;
	overflow: hidden;
	margin: 12px 0;
}

.skill-meter span {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	background: var(--gradient-primary);
	border-radius: 6px;
	display: block;
}

.skill-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.skill-tags li {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	color: var(--muted);
	padding: 4px 8px;
	border-radius: 10px;
	font-size: 12px;
}

@media (max-width: 768px) {
	.skills-modern h2 {
		font-size: 36px;
	}
}

:root {
	/* Emerald Green palette (Refined) */
	--bg: #ffffff;
	--fg: #0f172a;
	/* SLATE-900 for better contrast */
	--muted: #64748b;
	/* SLATE-500 */
	--primary: #10b981;
	/* EMERALD-500 */
	--primary-dark: #059669;
	/* EMERALD-600 */
	--accent: #059669;
	/* EMERALD-600 */
	--accent-light: #34d399;
	/* EMERALD-400 */
	--card: #ffffff;
	--card-hover: #f8fafc;
	--border: #e2e8f0;
	/* SLATE-200 */
	--border-light: #f1f5f9;
	/* SLATE-100 */
	--success: #10b981;
	--error: #ef4444;
	/* RED-500 */
	--warning: #f59e0b;
	/* AMBER-500 */

	/* Modern Depth System */
	--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);

	/* High-vibrancy Gradients */
	--gradient-light: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
	--gradient-primary: linear-gradient(135deg, #10b981 0%, #059669 100%);
	--gradient-accent: linear-gradient(135deg, #059669 0%, #10b981 100%);
	--gradient-bg: radial-gradient(ellipse at top, rgba(16, 185, 129, 0.08) 0%, transparent 50%), radial-gradient(ellipse at bottom right, rgba(5, 150, 105, 0.08) 0%, transparent 50%), #ffffff;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background: #ffffff;
	color: var(--fg);
	line-height: 1.6;
	font-size: 16px;
	overflow-x: hidden;
	word-wrap: break-word;
	width: 100%;
	position: relative;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Sticky footer layout */
html,
body {
	height: 100%;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

main {
	flex: 1 0 auto;
}

/* Loading Animation */
body.loading {
	overflow: hidden;
}

body.loading::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}

body.loading::after {
	content: '';
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50px;
	height: 50px;
	border: 3px solid rgba(34, 197, 94, 0.2);
	border-top: 3px solid #22c55e;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	z-index: 10000;
}

@keyframes spin {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}

	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

body.loaded {
	animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header Styles */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	backdrop-filter: blur(10px) saturate(160%);
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	border-bottom: 1px solid #e2e8f0;
	z-index: 1301;
	transition: all 0.3s ease;
}

/* Removed dark mode header */

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
	width: 100%;
}

.logo {
	color: var(--fg);
	font-weight: 700;
	font-size: 24px;
	text-decoration: none;
	letter-spacing: -0.5px;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transition: all 0.3s ease;
}

.logo:hover {
	transform: scale(1.05);
}

.menu {
	display: flex;
	align-items: center;
	gap: 32px;
}

.menu a {
	color: var(--muted);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
}

.menu a:hover {
	color: var(--primary);
	transform: translateY(-1px);
}

.menu a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gradient-primary);
	transition: width 0.3s ease;
}

.menu a:hover::after {
	width: 100%;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.btn:hover::before {
	left: 100%;
}

.btn--primary {
	background: var(--gradient-primary);
	color: white;
	box-shadow: var(--shadow);
}

.btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.btn--secondary {
	background: transparent;
	color: #0f172a !important;
	border: 2px solid var(--primary);
}

.btn--secondary:hover {
	background: var(--primary);
	color: white;
	transform: translateY(-2px);
}

.btn--sm {
	padding: 8px 16px;
	font-size: 13px;
}

.icon-btn {
	background: var(--card);
	border: 1px solid var(--border);
	color: var(--fg);
	padding: 10px;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.icon-btn:hover {
	background: var(--card-hover);
	transform: scale(1.05);
}

.hamburger {
	display: none;
	background: none;
	border: none;
	color: var(--fg);
	cursor: pointer;
	flex-direction: column;
	gap: 4px;
}

.hamburger span {
	display: block;
	width: 24px;
	height: 3px;
	background: #1e293b !important;
	/* Force dark color for visibility on light header */
	border-radius: 2px;
	transition: all 0.3s ease;
}

.hamburger:hover span {
	background: var(--primary);
}

/* Hamburger active → X animation */
.hamburger.active span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

/* Simple Hero Section */
.hero-simple {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: var(--bg);
	padding: 100px 0 60px;
}

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

.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.hero-text {
	max-width: 500px;
}

.hero-title {
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 16px;
	color: var(--fg);
}

.hero-subtitle {
	font-size: 18px;
	color: var(--primary);
	font-weight: 600;
	margin: 0 0 20px;
}

.hero-description {
	font-size: 16px;
	color: var(--muted);
	line-height: 1.6;
	margin: 0 0 32px;
}

.hero-actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.hero-actions .btn {
	padding: 12px 24px;
	font-size: 14px;
	font-weight: 600;
}

.hero-image {
	display: flex;
	justify-content: center;
	align-items: center;
}

.profile-image {
	width: 300px;
	height: 300px;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: var(--shadow-lg);
	transition: all 0.3s ease;
}

.profile-image:hover {
	transform: scale(1.05);
	box-shadow: var(--shadow-xl);
}




/* Particle Effect removed for cleaner design */

/* Scroll Animation */
.card,
.service-card,
.project-card,
.process-step,
.stat-item {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.animate-in {
	opacity: 1 !important;
	transform: translateY(0) !important;
}

/* Staggered Animation */
.service-card:nth-child(1) {
	transition-delay: 0.1s;
}

.service-card:nth-child(2) {
	transition-delay: 0.2s;
}

.service-card:nth-child(3) {
	transition-delay: 0.3s;
}

.service-card:nth-child(4) {
	transition-delay: 0.4s;
}

.project-card:nth-child(1) {
	transition-delay: 0.1s;
}

.project-card:nth-child(2) {
	transition-delay: 0.2s;
}

.project-card:nth-child(3) {
	transition-delay: 0.3s;
}

.process-step:nth-child(1) {
	transition-delay: 0.1s;
}

.process-step:nth-child(2) {
	transition-delay: 0.2s;
}

.process-step:nth-child(3) {
	transition-delay: 0.3s;
}

.process-step:nth-child(4) {
	transition-delay: 0.4s;
}

.stat-item:nth-child(1) {
	transition-delay: 0.1s;
}

.stat-item:nth-child(2) {
	transition-delay: 0.2s;
}

.stat-item:nth-child(3) {
	transition-delay: 0.3s;
}

.stat-item:nth-child(4) {
	transition-delay: 0.4s;
}



/* Grid System */
.grid {
	display: grid;
	gap: 24px;
}

.grid--2 {
	grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
	grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
	grid-template-columns: repeat(4, 1fr);
}

/* Card Styles */
.card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 32px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-primary);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
	border-color: var(--border-light);
}

.card:hover::before {
	transform: scaleX(1);
}

.card h3 {
	margin: 16px 0 12px;
	font-size: 20px;
	font-weight: 600;
	color: var(--fg);
}

.card p {
	color: var(--muted);
	margin: 0;
	line-height: 1.6;
}

.card i {
	font-size: 32px;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: block;
	margin-bottom: 8px;
}

/* Service Cards */
.service-card {
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-primary);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.service-card:hover::before {
	transform: scaleX(1);
}

.service-icon {
	position: relative;
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-icon i {
	font-size: 36px;
	color: var(--primary);
	position: relative;
	z-index: 2;
	transition: all 0.3s ease;
}

.icon-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--gradient-primary);
	border-radius: 50%;
	opacity: 0.1;
	transform: scale(0);
	transition: all 0.3s ease;
}

.service-card:hover .icon-bg {
	transform: scale(1);
	opacity: 0.2;
}

.service-card:hover .service-icon i {
	transform: scale(1.1);
	color: white;
}

.service-tech {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 16px;
}

.tech-chip {
	background: var(--card);
	border: 1px solid var(--border);
	color: var(--muted);
	padding: 4px 8px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 500;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.tech-chip i {
	font-size: 10px;
}

.service-card:hover .tech-chip {
	background: var(--primary);
	border-color: var(--primary);
	color: white;
	transform: translateY(-2px);
}

/* Sections */
.about-preview {
	padding: 120px 0;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	text-align: center;
}

.about-content {
	max-width: 800px;
	margin: 0 auto;
}

/* About section side-by-side layout */
.about-grid {
	align-items: center;
}

.about-photo {
	display: flex;
	justify-content: center;
}

.about-img {
	width: 100%;
	max-width: 220px;
	height: auto;
	border-radius: 16px;
	border: 2px solid var(--border);
	box-shadow: var(--shadow-lg);
	object-fit: cover;
}

.about-preview h2 {
	font-size: 48px;
	font-weight: 700;
	margin: 0 0 24px;
	background: linear-gradient(135deg, var(--fg) 0%, var(--muted) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.about-preview p {
	font-size: 18px;
	color: var(--muted);
	margin-bottom: 40px;
	line-height: 1.7;
}

.services {
	padding: 120px 0;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Modern Services Section */
.services-modern {
	padding: 120px 0;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.services-modern h2 {
	text-align: center;
	font-size: 48px;
	font-weight: 700;
	margin: 0 0 12px;
	background: linear-gradient(135deg, var(--fg) 0%, var(--muted) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.services-modern .section-subtitle {
	text-align: center;
	font-size: 18px;
	color: var(--muted);
	margin: 0 0 40px;
}

.services-grid-modern {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
}

.service-modern {
	background: var(--gradient-light);
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 24px;
	transition: all 0.3s ease;
}

.service-modern:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-xl);
	border-color: var(--border-light);
}

.service-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.service-head .badge {
	background: var(--gradient-primary);
	color: #fff;
	font-size: 12px;
	padding: 4px 10px;
	border-radius: 20px;
}

.service-head i {
	color: #fff;
	background: var(--gradient-primary);
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
}

.service-modern h3 {
	margin: 12px 0 8px;
	font-size: 18px;
	font-weight: 600;
	color: var(--fg);
}

.service-modern p {
	color: var(--muted);
	margin: 0 0 12px;
}

.service-points {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.service-points li {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	color: var(--muted);
	padding: 4px 8px;
	border-radius: 999px;
	font-size: 12px;
}

@media (max-width: 768px) {
	.services-modern h2 {
		font-size: 36px;
	}
}

.services h2 {
	text-align: center;
	margin: 0 0 16px;
	font-size: 48px;
	font-weight: 700;
	background: linear-gradient(135deg, var(--fg) 0%, var(--muted) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.section-subtitle {
	text-align: center;
	font-size: 18px;
	color: var(--muted);
	margin: 0 0 60px;
}

.technologies {
	padding: 120px 0;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.technologies h2 {
	text-align: center;
	font-size: 48px;
	font-weight: 700;
	margin: 0 0 60px;
	background: linear-gradient(135deg, var(--fg) 0%, var(--muted) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.tech-categories {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 32px;
	max-width: 1200px;
	margin: 0 auto;
}

.tech-category {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 24px;
	text-align: center;
}

.tech-category h3 {
	font-size: 18px;
	font-weight: 600;
	color: var(--fg);
	margin: 0 0 16px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.tech-category h3 i {
	color: var(--primary);
	font-size: 16px;
}

.tech-items {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}

.tech-tag {
	background: var(--primary);
	color: white;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.tech-tag i {
	font-size: 12px;
}

.cta {
	padding: 120px 0;
	text-align: center;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.cta h2 {
	margin: 0 0 16px;
	font-size: 40px;
	font-weight: 700;
}

.cta p {
	font-size: 18px;
	color: var(--muted);
	margin-bottom: 32px;
}

.cta-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 32px;
}

.social-links {
	display: flex;
	gap: 16px;
	justify-content: center;
}

.social-link {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--card);
	border: 1px solid var(--border);
	color: var(--muted);
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s ease;
}

.social-link:hover {
	background: var(--primary);
	border-color: var(--primary);
	color: white;
	transform: translateY(-2px);
}

/* Ensure Font Awesome loads correctly even if CDN blocks integrity */
.fa,
.fa-solid,
.fa-regular,
.fa-brands {
	font-style: normal;
}

/* Testimonials Section */
.testimonials {
	padding: 120px 0;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.testimonials h2 {
	text-align: center;
	font-size: 48px;
	font-weight: 700;
	margin: 0 0 16px;
	background: linear-gradient(135deg, var(--fg) 0%, var(--muted) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.testimonials-slider {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
}

.testimonials-track {
	display: flex;
	overflow: hidden;
	border-radius: 20px;
}

.testimonial-card {
	flex: 0 0 100%;
	padding: 40px;
	background: var(--gradient-light);
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
}

.testimonial-content {
	margin-bottom: 32px;
}

.quote-icon {
	font-size: 32px;
	color: var(--primary);
	margin-bottom: 20px;
	opacity: 0.7;
}

.testimonial-text {
	font-size: 18px;
	line-height: 1.7;
	color: var(--muted);
	font-style: italic;
	margin: 0;
	position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
	content: '"';
	font-size: 24px;
	color: var(--primary);
	opacity: 0.5;
}

.testimonial-author {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}

.author-info h4 {
	font-size: 18px;
	font-weight: 600;
	color: var(--fg);
	margin: 0 0 4px;
}

.author-info span {
	font-size: 14px;
	color: var(--muted);
}

.rating {
	display: flex;
	gap: 4px;
}

.rating i {
	color: var(--accent);
	font-size: 16px;
}

.testimonials-controls {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	display: flex;
	justify-content: space-between;
	pointer-events: none;
}

.testimonial-btn {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--card);
	border: 2px solid var(--border);
	color: var(--fg);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	pointer-events: all;
	z-index: 2;
}

.testimonial-btn:hover {
	background: var(--primary);
	border-color: var(--primary);
	color: white;
	transform: scale(1.1);
}

.testimonial-btn.prev {
	left: -24px;
}

.testimonial-btn.next {
	right: -24px;
}

.testimonials-dots {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 32px;
}

.testimonial-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--border);
	cursor: pointer;
	transition: all 0.3s ease;
}

.testimonial-dot.active {
	background: var(--primary);
	transform: scale(1.2);
}

/* Featured Projects Section */
.featured-projects {
	padding: 120px 0;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.featured-projects h2 {
	text-align: center;
	font-size: 48px;
	font-weight: 700;
	margin: 0 0 16px;
	background: linear-gradient(135deg, var(--fg) 0%, var(--muted) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Portfolio Grid Styles for Featured Projects */
.pf-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 20px;
	margin: 60px 0;
}

.pf-card {
	display: block;
	text-decoration: none;
	color: inherit;
	background: var(--gradient-light);
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.pf-thumb {
	height: 160px;
	background: var(--card);
	overflow: hidden;
}

.pf-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pf-body {
	padding: 16px 18px;
	display: flex;
	flex-direction: column;
	height: 160px;
}

.pf-body h3 {
	margin: 0 0 8px;
	font-size: 18px;
	color: var(--fg);
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.pf-body p {
	margin: 0 0 8px;
	color: var(--muted);
	line-height: 1.4;
	font-size: 14px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	height: 2.8em;
	/* 2 lines * 1.4 line-height */
}

.read-more {
	color: var(--primary);
	font-weight: 500;
	font-size: 12px;
	margin-bottom: 8px;
	display: block;
}

.pf-card:hover .read-more {
	text-decoration: underline;
}

.pf-meta {
	margin-top: auto;
}

.pf-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-bottom: 8px;
}

.category-tag {
	background: var(--primary);
	color: white;
	padding: 2px 6px;
	border-radius: 8px;
	font-size: 10px;
	font-weight: 600;
}

.category-tag.more {
	background: var(--muted);
}

.pf-tags {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.pf-tags li {
	background: var(--card);
	border: 1px solid var(--border);
	color: var(--muted);
	padding: 4px 8px;
	border-radius: 12px;
	font-size: 12px;
}

.project-card {
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
	border: 1px solid rgba(34, 197, 94, 0.1);
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(34, 197, 94, 0.08);
}

.project-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(34, 197, 94, 0.15);
	border-color: rgba(34, 197, 94, 0.3);
}

.project-image {
	height: 200px;
	background: var(--gradient-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.project-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.project-mockup {
	width: 120px;
	height: 80px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 12px;
}

.mockup-content {
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 4px;
	padding: 8px;
}

.app-preview {
	width: 100%;
	height: 100%;
}

.app-bar {
	width: 100%;
	height: 8px;
	background: var(--primary);
	border-radius: 2px;
	margin-bottom: 6px;
}

.app-body {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.content-line {
	width: 100%;
	height: 4px;
	background: var(--muted);
	border-radius: 2px;
}

.content-line.short {
	width: 60%;
}

.project-info {
	padding: 24px;
}

.project-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}

.project-header h3 {
	font-size: 20px;
	font-weight: 600;
	color: #1e293b;
	margin: 0;
}

.project-platforms {
	display: flex;
	gap: 8px;
}

.project-platforms i {
	font-size: 16px;
	color: #64748b;
	transition: all 0.3s ease;
}

.project-platforms i:hover {
	color: #22c55e;
	transform: scale(1.2);
}

.project-info p {
	color: #64748b;
	margin: 0 0 16px;
	line-height: 1.6;
}

.project-tech {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 20px;
}

.tech-badge {
	background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.1) 100%);
	border: 1px solid rgba(34, 197, 94, 0.2);
	color: #22c55e;
	padding: 4px 8px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 500;
}

.project-actions {
	display: flex;
	gap: 8px;
}

.project-actions .btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.btn--outline {
	background: transparent;
	border: 1px solid rgba(34, 197, 94, 0.3);
	color: #22c55e;
	padding: 6px 12px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn--outline:hover {
	background: #22c55e;
	color: white;
	border-color: #22c55e;
}

.projects-cta {
	text-align: center;
	margin-top: 40px;
}

/* Responsive Design for Portfolio Grid */
@media (max-width: 768px) {
	.pf-grid {
		grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
		gap: 16px;
	}

	.pf-body {
		height: 140px;
		padding: 14px 16px;
	}

	.pf-body h3 {
		font-size: 16px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.pf-body p {
		font-size: 13px;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
		height: 2.6em;
		/* 2 lines * 1.3 line-height for mobile */
	}

	.pf-thumb {
		height: 140px;
	}
}

/* Recent Posts */
.recent-posts {
	padding: 120px 0;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.recent-header {
	text-align: center;
	margin: 0 0 16px;
}

.recent-header h2 {
	font-size: 48px;
	font-weight: 700;
	margin: 0;
	background: linear-gradient(135deg, var(--fg) 0%, var(--muted) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 32px;
	margin-top: 40px;
}

.post-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.post-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-xl);
	border-color: var(--border-light);
}

.post-image {
	position: relative;
	display: block;
	height: 200px;
	overflow: hidden;
}

.post-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.post-card:hover .post-image img {
	transform: scale(1.05);
}

.post-category {
	position: absolute;
	top: 12px;
	right: 12px;
	background: rgba(0, 0, 0, 0.8);
	color: #fff;
	padding: 4px 10px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 600;
}

.post-content {
	padding: 20px;
}

.post-meta {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 10px;
}

.post-meta span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--muted);
	font-size: 12px;
}

.post-title {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 700;
}

.post-title a {
	color: var(--fg);
	text-decoration: none;
}

.post-title a:hover {
	color: var(--primary);
}

.post-excerpt {
	color: var(--muted);
	margin: 0 0 16px;
	line-height: 1.6;
	font-size: 14px;
}

.posts-cta {
	text-align: center;
	margin-top: 32px;
}

@media (max-width: 768px) {
	.recent-header h2 {
		font-size: 36px;
	}
}

/* Stats Section */
.stats-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-size: 48px;
	font-weight: 800;
	color: var(--primary);
	margin-bottom: 8px;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-label {
	font-size: 16px;
	color: var(--muted);
	font-weight: 500;
}

/* Process Section */
.process-section {
	padding: 120px 0;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.process-section h2 {
	text-align: center;
	font-size: 48px;
	font-weight: 700;
	margin: 0 0 16px;
	background: linear-gradient(135deg, var(--fg) 0%, var(--muted) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 32px;
	margin-top: 60px;
}

.process-step {
	text-align: center;
	position: relative;
}

.step-number {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--gradient-primary);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 700;
	margin: 0 auto 20px;
	box-shadow: var(--shadow-lg);
}

.step-content h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--fg);
	margin: 0 0 12px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.step-content h3 i {
	color: var(--primary);
	font-size: 18px;
}

.step-tools {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 16px;
}

.step-tools i {
	font-size: 16px;
	color: var(--muted);
	transition: all 0.3s ease;
	cursor: pointer;
}

.step-tools i:hover {
	color: var(--primary);
	transform: scale(1.2);
}

.step-content p {
	color: var(--muted);
	line-height: 1.6;
	margin: 0;
}

/* Footer */
.site-footer {
	border-top: 1px solid var(--border);
	padding: 40px 0;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	color: #64748b;
	/* Force readable grey text */
}

.footer__content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}

.socials {
	display: flex;
	gap: 16px;
}

.socials a {
	color: var(--muted);
	font-size: 20px;
	transition: all 0.3s ease;
}

.socials a:hover {
	color: var(--primary);
	transform: translateY(-2px);
}

/* Form Styles */
form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

label {
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-weight: 500;
	color: #1e293b;
	/* Force dark label for visibility on light bg */
}

input,
textarea,
select {
	width: 100%;
	padding: 12px 16px;
	border-radius: 12px;
	border: 2px solid var(--border);
	background: var(--card);
	color: var(--fg);
	font-size: 16px;
	transition: all 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-20px);
	}
}

/* Responsive Design */
@media (max-width: 1024px) {
	.grid--4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.container {
		padding: 0 15px;
		max-width: 100vw;
	}

	.nav {
		height: 64px;
	}

	.menu {
		display: flex;
		position: fixed;
		top: 64px;
		/* align below mobile header */
		bottom: 0;
		left: 0;
		width: min(86%, 300px);
		z-index: 1200;
		background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
		border-right: 1px solid #e2e8f0;
		flex-direction: column;
		align-items: stretch;
		padding: 20px 16px calc(24px + env(safe-area-inset-bottom));
		gap: 0;
		box-shadow: 16px 0 32px rgba(0, 0, 0, 0.25);
		transform: translateX(-100%);
		transition: transform 0.28s cubic-bezier(.4, 0, .2, 1);
		overflow-y: auto;
		height: calc(100vh - 64px);
	}

	.menu.active {
		transform: translateX(0) !important;
	}

	/* Force visibility for all links inside mobile drawer - SUPREME SPECIFICITY */
	#navMenu,
	#navMenu a,
	#navMenu .dropdown-toggle {
		color: #1e293b !important;
		/* Force dark text always on mobile drawer */
		opacity: 1 !important;
		visibility: visible !important;
	}

	#navMenu a,
	#navMenu .dropdown-toggle {
		color: #1e293b !important;
		/* Force dark text always on mobile drawer */
		opacity: 1 !important;
		visibility: visible !important;
		background: none;
		border: none;
		font-family: inherit;
	}

	/* Mobile dropdown styles removed here and consolidated at the end of the file */


	.dropdown.open .dropdown-toggle {
		color: #10b981 !important;
	}

	.dropdown-toggle::after {
		content: '\f107' !important;
		font-family: 'Font Awesome 6 Free' !important;
		font-weight: 900 !important;
		margin-left: auto !important;
		transition: transform 0.3s !important;
	}

	#navMenu a {
		display: block;
		padding: 16px 12px;
		font-size: 16px;
		border-radius: 12px;
		transition: background 0.2s ease;
		text-align: left;
		width: 100%;
		position: relative;
		z-index: 5;
		min-height: 48px;
	}

	#navMenu a:hover,
	#navMenu a:active {
		background: rgba(10, 11, 15, 0.05) !important;
		color: #10b981 !important;
	}

	.site-header .menu a:hover,
	.site-header .menu a:active {
		background: rgba(10, 11, 15, 0.05) !important;
		color: #10b981 !important;
	}

	/* subtle separators */
	.menu>a:not(.btn):not(.icon-btn)+a:not(.btn):not(.icon-btn) {
		border-top: 1px solid rgba(226, 232, 240, 0.6);
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}

	/* Disable desktop underline effect inside mobile menu */
	.menu>a:not(.btn):not(.icon-btn)::after {
		display: none;
	}

	/* Primary action full width */
	.menu .btn {
		width: 100%;
		justify-content: center;
		margin-top: 16px;
	}

	/* Mobile Dropdown Adjustments */
	.dropdown {
		width: 100%;
	}

	.dropdown-toggle {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		padding: 14px 12px;
		color: #1e293b !important;
		/* Force dark text for mobile dropdown toggle */
		background: transparent;
		border: none;
		border-bottom: 1px solid rgba(226, 232, 240, 0.6);
		font-size: 16px;
		font-family: inherit;
		text-align: left;
		cursor: pointer;
	}

	.dropdown-toggle.active {
		color: #10b981 !important;
	}

	.dropdown-menu {
		position: static !important;
		display: none !important;
		visibility: visible !important;
		opacity: 1 !important;
		background: rgba(0, 0, 0, 0.03) !important;
		width: 100% !important;
		margin: 0 !important;
		padding: 4px 0 4px 16px !important;
		border: none !important;
		box-shadow: none !important;
		transform: none !important;
		z-index: 100 !important;
	}

	/* Show when parent has .open class */
	.dropdown.open .dropdown-menu {
		display: block !important;
	}

	.dropdown.open .dropdown-toggle {
		color: #10b981 !important;
	}

	.dropdown.open .dropdown-toggle::after {
		transform: rotate(180deg);
	}

	/* Force sub-menu links to be dark and visible */
	.dropdown-menu a {
		color: #1e293b !important;
		display: block !important;
		padding: 12px !important;
		font-size: 15px !important;
		opacity: 1 !important;
		visibility: visible !important;
	}

	/* Account icon alignment */
	.menu .icon-btn {
		align-self: flex-start;
		margin: 8px 0 0 0;
	}

	/* Backdrop for drawer */
	.mobile-backdrop {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(0, 0, 0, 0.45);
		backdrop-filter: blur(2px);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.25s ease, visibility 0.25s ease;
		z-index: 1199;
	}

	.mobile-backdrop.show {
		opacity: 1;
		visibility: visible;
	}

	.hamburger {
		display: flex;
	}

	.hero-simple {
		padding: 80px 0 40px;
	}

	.hero-content {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}

	.hero-text {
		max-width: 100%;
	}

	.hero-actions {
		justify-content: center;
		flex-direction: column;
		align-items: center;
	}

	.hero-actions .btn {
		width: 100%;
		max-width: 280px;
	}

	.profile-image {
		width: 250px;
		height: 250px;
	}


	.grid--3,
	.grid--2 {
		grid-template-columns: 1fr;
	}

	.about-preview h2 {
		font-size: 36px;
	}

	/* Stack about layout on mobile */
	.about-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.stats {
		flex-direction: column;
		gap: 24px;
		text-align: center;
	}

	.image-placeholder {
		width: 200px;
		height: 200px;
	}

	.image-placeholder i {
		font-size: 60px;
	}

	.services h2 {
		font-size: 36px;
	}

	.technologies h2 {
		font-size: 36px;
	}

	.tech-categories {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.tech-category {
		padding: 20px;
	}

	.cta h2 {
		font-size: 32px;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.cta-buttons .btn {
		width: 100%;
		max-width: 280px;
	}

	.card {
		padding: 24px;
	}

	/* Testimonials mobile */
	.testimonials h2 {
		font-size: 36px;
	}

	.testimonial-card {
		padding: 24px;
	}

	.testimonial-text {
		font-size: 16px;
	}

	.testimonial-btn.prev {
		left: -16px;
	}

	.testimonial-btn.next {
		right: -16px;
	}

	.testimonial-author {
		flex-direction: column;
		text-align: center;
		gap: 12px;
	}

	.about-modern,
	.testimonials-modern,
	.skills-modern,
	.features-showcase,
	.resume-section,
	.recent-posts,
	.stats-section,
	.process-section {
		padding: 60px 0;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 28px;
	}

	.hero-subtitle {
		font-size: 16px;
	}

	.hero-description {
		font-size: 14px;
	}

	.profile-image {
		width: 200px;
		height: 200px;
	}

	.services h2 {
		font-size: 28px;
	}

	.cta h2 {
		font-size: 24px;
	}
}

/* Scroll to Top Button */
.scroll-to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--gradient-primary);
	color: white;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-lg);
	transition: all 0.3s ease;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	z-index: 1000;
}

.scroll-to-top.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.scroll-to-top:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-xl);
}

/* Back-to-top button: visually show it's actionable */
.scroll-to-top i {
	pointer-events: none;
}

.scroll-to-top::after {
	content: ' Top';
	margin-left: 6px;
	font-size: 12px;
	opacity: 0.9;
}

/* Prevent body scroll when mobile menu is open */
body.no-scroll {
	overflow: hidden;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 1px, 1px);
	white-space: nowrap;
	border: 0;
}


/* Mobile responsive for new sections */
@media (max-width: 768px) {
	.projects-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.project-card {
		margin: 0 16px;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.stat-number {
		font-size: 36px;
	}

	.process-steps {
		grid-template-columns: 1fr;
		gap: 24px;
	}


	.scroll-to-top {
		bottom: 16px;
		right: 16px;
		width: 44px;
		height: 44px;
	}
}

@media (max-width: 480px) {
	.stats-grid {
		grid-template-columns: 1fr;
	}

	.stat-number {
		font-size: 32px;
	}

	.featured-projects h2,
	.process-section h2 {
		font-size: 36px;
	}

	.resume-content {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}

	.resume-preview {
		padding: 24px;
	}

	.file-info {
		flex-direction: column;
		gap: 8px;
	}
}

/* Resume Section */
.resume-section {
	padding: 120px 0;
	background: var(--card);
}

@media (max-width: 480px) {
	.resume-section {
		padding: 60px 0;
	}
}

.resume-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.resume-text h2 {
	font-size: 36px;
	font-weight: 700;
	margin: 0 0 20px;
	color: var(--fg);
}

.resume-text p {
	font-size: 18px;
	color: var(--muted);
	line-height: 1.6;
	margin: 0 0 32px;
}

/* Resources Modern (matches homepage palette) */
.resources-modern {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #f8fafc 0%, #eef7ff 50%, #eafdf5 100%);
}

/* Radial blob mockup background for hero */
.hero-bg {
	position: relative;
}

.hero-bg::before,
.hero-bg::after {
	content: '';
	position: absolute;
	width: 220px;
	height: 220px;
	border-radius: 9999px;
	filter: blur(18px);
	pointer-events: none;
}

.hero-bg::before {
	top: -40px;
	left: -30px;
	background: radial-gradient(closest-side, rgba(34, 197, 94, .18), rgba(34, 197, 94, 0));
}

.hero-bg::after {
	bottom: -60px;
	right: -30px;
	background: radial-gradient(closest-side, rgba(59, 130, 246, .16), rgba(59, 130, 246, 0));
}

.resources-hero-clean {
	text-align: center;
	margin: 0 0 28px;
}

.hero-badge {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	padding: 6px 12px;
	border: 1px solid #e2e8f0;
	border-radius: 999px;
	background: var(--card);
	font-weight: 600;
	font-size: 12px;
	color: #0f172a;
	margin-bottom: 10px;
}

.hero-heading {
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 800;
	letter-spacing: -.3px;
	margin: 0 0 8px;
}

.hero-heading .accent {
	background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-sub {
	max-width: 780px;
	margin: 0 auto;
	color: #475569;
}

.hero-logos {
	display: flex;
	gap: 14px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin: 14px 0 8px;
}

.hero-logos .logo-chip {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	padding: 6px 10px;
	border-radius: 10px;
	border: 1px solid #e2e8f0;
	background: var(--card);
	color: #0f172a;
	font-weight: 600;
	font-size: 12px;
}

.glass-stats {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
	padding: 10px;
	border-radius: 14px;
	backdrop-filter: saturate(160%) blur(6px);
	background: linear-gradient(135deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .5));
	border: 1px solid rgba(226, 232, 240, .75);
	box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
	margin: 10px auto 12px;
	width: fit-content;
}

.glass-stats .gstat {
	padding: 8px 12px;
	border-radius: 10px;
	border: 1px solid #e2e8f0;
	background: var(--card);
	font-weight: 700;
	font-size: 12px;
	color: #0f172a;
}

.hero-cta {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 6px;
}

.resources-hero-pro {
	position: relative;
	border: 1px solid #e6f0ff;
	border-radius: 20px;
	padding: 28px 24px 18px;
	margin: 8px 0 28px;
	background: linear-gradient(135deg, #ffffff 0%, #f6fbff 60%, #f4fff9 100%);
	box-shadow: 0 16px 40px rgba(15, 23, 42, .06);
}

.resources-hero-pro::before,
.resources-hero-pro::after {
	content: '';
	position: absolute;
	pointer-events: none;
	border-radius: 9999px;
	filter: blur(18px);
}

.resources-hero-pro::before {
	width: 180px;
	height: 180px;
	top: -40px;
	left: -30px;
	background: radial-gradient(closest-side, rgba(34, 197, 94, .20), rgba(34, 197, 94, 0));
}

.resources-hero-pro::after {
	width: 220px;
	height: 220px;
	bottom: -60px;
	right: -30px;
	background: radial-gradient(closest-side, rgba(59, 130, 246, .18), rgba(59, 130, 246, 0));
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 24px;
	align-items: center;
}

.hero-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	border: 1px solid #e2e8f0;
	border-radius: 999px;
	background: #ffffff;
	font-weight: 600;
	font-size: 12px;
	color: #0f172a;
	margin-bottom: 10px;
}

.hero-title {
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 800;
	letter-spacing: -.3px;
	margin: 0 0 8px;
}

.hero-title .accent {
	background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-desc {
	color: #475569;
	margin: 0 0 12px;
}

.hero-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 12px 0 6px;
}

.stat-chip {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	color: #0f172a;
	padding: 6px 10px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 12px;
}

.hero-illu {
	position: relative;
	height: 140px;
	border-radius: 16px;
	background: linear-gradient(135deg, #e6f6ff 0%, #eafff3 100%);
	border: 1px solid #e6f0ff;
}

.hero-illu::before,
.hero-illu::after {
	content: '';
	position: absolute;
	border-radius: 9999px;
	filter: blur(16px);
}

.hero-illu::before {
	width: 120px;
	height: 120px;
	left: 18%;
	top: 16%;
	background: radial-gradient(closest-side, rgba(34, 197, 94, .25), rgba(34, 197, 94, 0));
}

.hero-illu::after {
	width: 150px;
	height: 150px;
	right: 14%;
	bottom: 10%;
	background: radial-gradient(closest-side, rgba(59, 130, 246, .22), rgba(59, 130, 246, 0));
}

@media (max-width: 768px) {
	.hero-grid {
		grid-template-columns: 1fr;
	}

	.hero-illu {
		height: 120px;
	}
}

.resources-header {
	text-align: center;
	margin-bottom: 12px;
}

.resources-title {
	font-size: 40px;
	font-weight: 800;
	margin: 0 0 12px;
	background: linear-gradient(135deg, var(--fg) 0%, var(--muted) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.resources-header .eyebrow-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 auto 12px;
	padding: 6px 12px;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(34, 197, 94, .12) 0%, rgba(59, 130, 246, .12) 100%);
	border: 1px solid rgba(148, 163, 184, .35);
	color: #0f172a;
	font-weight: 600;
	font-size: 12px;
}

.resources-title {
	letter-spacing: -.3px;
}

.resources-title .highlight {
	background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.resources-subcopy {
	max-width: 760px;
	margin: 8px auto 0;
	color: #475569;
}

.resources-grid-modern {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
}

/* Resources hero and filters (light theme) */
.resources-hero {
	background: linear-gradient(135deg, #ffffff 0%, #f6fbff 60%, #f4fff9 100%);
	border: 1px solid #e6f0ff;
	border-radius: 16px;
	padding: 16px 16px 12px;
	margin: 16px 0 28px;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.filter-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}

.chip {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	color: #334155;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.25s ease;
}

.chip:hover {
	background: #f8fafc;
	transform: translateY(-2px);
}

.chip.active {
	background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
	border-color: #16a34a;
	color: #ffffff;
	box-shadow: var(--shadow);
}

.resources-toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
	margin: 10px 0 4px;
}

.resources-count {
	color: var(--muted);
	font-size: 14px;
}

.sort-select {
	min-width: 180px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 10px 12px;
	color: #334155;
}

.hero-actions {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin: 14px 0 8px;
}

.soft-divider {
	height: 1px;
	background: linear-gradient(90deg, rgba(2, 6, 23, 0) 0%, rgba(2, 6, 23, .08) 50%, rgba(2, 6, 23, 0) 100%);
	margin: 16px 0 8px;
}

.resource-card-modern {
	background: var(--gradient-light);
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.25s ease;
}

.resource-card-modern:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-xl);
	border-color: var(--border-light);
}

.resource-thumb {
	display: block;
	position: relative;
	height: 180px;
	overflow: hidden;
	background: var(--gradient-primary);
}

.resource-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
	background: var(--card);
}

.resource-card-modern:hover .resource-thumb img {
	transform: scale(1.05);
}

.resource-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	font-size: 12px;
	font-weight: 700;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(34, 197, 94, 0.15);
	color: #166534;
	backdrop-filter: blur(6px);
}

.resource-badge.paid {
	background: rgba(239, 68, 68, 0.15);
	color: #991b1b;
}

.resource-body {
	padding: 16px;
}

.resource-title {
	margin: 0 0 6px;
	font-size: 18px;
	font-weight: 700;
	color: var(--fg);
}

.resource-desc {
	margin: 0 0 12px;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.6;
}

.resource-meta-modern {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin-bottom: 14px;
}

.resource-meta-modern .tag {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	color: var(--muted);
	padding: 4px 8px;
	border-radius: 10px;
	font-size: 12px;
	font-weight: 600;
}

.resource-meta-modern .meta {
	color: var(--muted);
	font-size: 12px;
	padding: 4px 8px;
}

.resource-actions-modern {
	display: flex;
	gap: 8px;
}

.no-resources-modern {
	text-align: center;
	padding: 60px 20px;
	color: var(--muted);
}

.no-resources-modern i {
	font-size: 48px;
	margin-bottom: 12px;
	opacity: 0.5;
}

.resume-features {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.feature {
	display: flex;
	align-items: center;
	gap: 12px;
}

.feature i {
	color: var(--success);
	font-size: 16px;
}

.feature span {
	color: var(--muted);
	font-weight: 500;
}

.resume-download {
	text-align: center;
}

.resume-preview {
	background: var(--bg);
	border: 2px solid var(--border);
	border-radius: 20px;
	padding: 40px;
	margin-bottom: 32px;
	transition: all 0.3s ease;
}

.resume-preview:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-xl);
	border-color: var(--primary);
}

.resume-icon {
	width: 80px;
	height: 80px;
	border-radius: 20px;
	background: var(--gradient-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.resume-icon i {
	font-size: 32px;
	color: white;
}

.resume-preview h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--fg);
	margin: 0 0 8px;
}

.resume-preview p {
	color: var(--muted);
	margin: 0 0 20px;
	font-size: 14px;
}

.file-info {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.file-info span {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: var(--muted);
}

.file-info i {
	font-size: 10px;
}

.btn--large {
	padding: 16px 32px;
	font-size: 16px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

/* Dark mode removed */


/* Services Section */
.svc-section {
	padding: 100px 0;
	background: var(--gradient-light);
}

/* Removed dark mode svc-section */

.svc-heading {
	text-align: center;
	font-size: 36px;
	font-weight: 700;
	margin: 0 0 12px;
	background: linear-gradient(135deg, #1e293b 0%, #64748b 100%);
	/* Force dark text for visibility */
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.section-subtitle {
	text-align: center;
	color: var(--muted);
	margin: 0 0 40px;
}

.svc-grid-new {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 20px;
}

.svc-card {
	background: var(--gradient-light);
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 20px;
	transition: all .25s ease;
}

.svc-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-xl);
	border-color: #dbe4f0;
}

.svc-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--gradient-primary);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	margin-bottom: 12px;
}

.svc-card h3 {
	margin: 0 0 8px;
	font-size: 18px;
	color: #1e293b;
	/* Stay dark even in dark mode on light card */
}

.svc-card p {
	margin: 0 0 12px;
	color: #64748b;
	/* Stay grey on light card */
}

.svc-points {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 6px;
	color: #64748b;
	/* Stay grey on light card */
	font-size: 14px;
}

/* Pricing Section */
.svc-pricing-new {
	padding: 100px 0;
	background: var(--card);
}

/* Removed dark mode svc-pricing-new */

.svc-pricing-new .price-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 20px;
	max-width: 1000px;
	margin: 0 auto;
}

.price-card {
	background: var(--gradient-light);
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.price-card .price-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.price-card .badge {
	background: var(--gradient-primary);
	color: #fff;
	font-size: 12px;
	padding: 4px 10px;
	border-radius: 999px;
}

.price-card ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
	color: var(--muted);
	font-size: 14px;
}

.price-card.featured {
	border-color: var(--primary);
	box-shadow: 0 10px 30px rgba(34, 197, 94, .18);
	transform: translateY(-2px);
}

.price-card .btn {
	align-self: flex-start;
}

.price-note {
	text-align: center;
	color: var(--muted);
	margin-top: 12px;
}

/* Resources Section */
.resources-modern {
	padding: 100px 0;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.resources-hero-clean {
	text-align: center;
	padding: 60px 0;
	background: var(--gradient-light);
	border-radius: 24px;
	border: 1px solid #e2e8f0;
	box-shadow: 0 20px 60px rgba(34, 197, 94, 0.1);
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
	color: white;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 24px;
}

.hero-heading {
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 800;
	margin: 0 0 16px;
	color: #1e293b;
}

.hero-heading .accent {
	background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-sub {
	font-size: 18px;
	color: #64748b;
	margin: 0 0 32px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.hero-logos {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 32px;
}

.logo-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--gradient-light);
	border: 1px solid #e2e8f0;
	color: #64748b;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.logo-chip:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(34, 197, 94, 0.15);
	border-color: rgba(34, 197, 94, 0.3);
}

.hero-cta {
	margin-top: 32px;
}

/* Dropdown Menu - Desktop Only */
@media (min-width: 1025px) {
	.dropdown {
		position: relative;
		display: inline-block;
	}

	.dropdown-toggle {
		cursor: pointer;
		color: var(--muted);
		font-weight: 500;
		transition: color 0.3s;
		padding: 15px 0;
		background: none;
		border: none;
		font-family: inherit;
		font-size: inherit;
		/* Increase hit area vertically */
	}

	.dropdown-toggle:hover {
		color: var(--primary);
	}

	.dropdown-menu {
		visibility: hidden;
		opacity: 0;
		position: absolute;
		top: 100%;
		left: 0;
		background-color: #ffffff;
		min-width: 220px;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
		border-radius: 12px;
		border: 1px solid #e2e8f0;
		z-index: 1000;
		padding: 12px 0;
		margin-top: 0;
		transform: translateY(10px);
		transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.dropdown:hover .dropdown-menu {
		visibility: visible;
		opacity: 1;
		transform: translateY(0);
	}

	.dropdown-menu a {
		display: block;
		padding: 12px 20px;
		color: #1e293b;
		text-decoration: none;
		transition: all 0.2s;
		font-size: 14px;
		font-weight: 500;
	}

	.dropdown-menu a:hover {
		background-color: rgba(34, 197, 94, 0.05);
		color: var(--primary);
		padding-left: 24px;
	}

	.dropdown-toggle::after {
		content: '\f107';
		font-family: 'Font Awesome 6 Free';
		font-weight: 900;
		margin-left: 8px;
		font-size: 12px;
		transition: transform 0.3s ease;
		display: inline-block;
	}

	.dropdown:hover .dropdown-toggle::after {
		transform: rotate(180deg);
		color: var(--primary);
	}
}

/* Removed final safeguard */

/* MOBILE DROPDOWN IMPROVEMENTS */
@media (max-width: 1024px) {
	#navMenu .dropdown {
		position: relative;
		width: 100%;
	}

	#navMenu .dropdown-toggle {
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 15px 20px;
		background: transparent;
		border: none;
		color: #1e293b;
		font-weight: 500;
		font-size: 16px;
		text-align: left;
		border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	}

	#navMenu .dropdown-toggle::after {
		content: '\f107';
		font-family: 'Font Awesome 6 Free';
		font-weight: 900;
		font-size: 12px;
		transition: transform 0.3s ease;
	}

	#navMenu .dropdown.open .dropdown-toggle::after {
		transform: rotate(180deg);
	}

	#navMenu .dropdown-menu {
		display: block !important;
		max-height: 0;
		overflow: hidden;
		background: #f8fafc !important;
		transition: max-height 0.4s ease, padding 0.4s ease;
		padding: 0 !important;
		border-left: 4px solid var(--primary) !important;
	}

	#navMenu .dropdown.open .dropdown-menu {
		max-height: 500px;
		padding: 10px 0 !important;
	}

	#navMenu .dropdown-menu a {
		padding: 12px 30px !important;
		color: #475569 !important;
		font-size: 14px !important;
		font-weight: 500 !important;
		display: block !important;
	}

	#navMenu .dropdown.open .dropdown-toggle {
		background: rgba(16, 185, 129, 0.05) !important;
		color: var(--primary) !important;
	}
}