/* ========================================
           RESET & BASE STYLES
           ======================================== */
@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&display=swap");

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

:root {
	--font-primary: "Sora", sans-serif;
	--font-code: "IBM Plex Mono", monospace;
}

body {
	font-family: var(--font-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-primary);
	font-weight: 600;
}

:root {
	--bg-primary: #0a0a0a;
	--bg-secondary: #111111;
	--text-primary: #ffffff;
	--text-secondary: #a0a0a0;
	--accent: #00ff88;
	--accent-hover: #00cc6f;
	--card-bg: #1a1a1a;
}

/* Default = Dark mode */
body {
	font-family:
		"Inter",
		system-ui,
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		"Helvetica Neue",
		Arial,
		sans-serif;
	background: var(--bg-primary);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

/* Light mode */
body.light-mode {
	background-color: #ffffff;
	color: #0f172a;
}

body {
	font-family:
		-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
		Arial, sans-serif;
	background: var(--bg-primary);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
	position: relative;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* Animated Background */
body::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(
			circle at 20% 50%,
			rgba(0, 255, 136, 0.05) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 80%,
			rgba(0, 255, 136, 0.03) 0%,
			transparent 50%
		);
	pointer-events: none;
	z-index: 0;
}

/* ========================================
           HEADER & NAVIGATION
           ======================================== */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(10, 10, 10, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(0, 255, 136, 0.1);
	padding: 1.2rem 0;
	z-index: 1000;
	transition: all 0.3s ease;
}

header.scrolled {
	padding: 0.8rem 0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 1;
}

.logo {
	font-size: 1.5rem;
	font-weight: 700;
	background: linear-gradient(135deg, var(--accent), #00ddff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.5px;
	z-index: 1001;
}

nav {
	display: flex;
	align-items: center;
	gap: 2rem;
}

nav ul {
	display: flex;
	gap: 2.5rem;
	list-style: none;
	align-items: center;
}

nav ul li a {
	color: var(--text-secondary);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.95rem;
	position: relative;
	transition: color 0.3s ease;
}

nav ul li a::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--accent);
	transition: width 0.3s ease;
}

nav ul li a:hover {
	color: var(--text-primary);
}

nav ul li a:hover::after {
	width: 100%;
}

.theme-toggle {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 0.5rem 0.8rem;
	border-radius: 8px;
	cursor: pointer;
	font-size: 1.2rem;
	transition: all 0.3s ease;
}

.theme-toggle:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
}

.nav-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--text-primary);
	font-size: 1.5rem;
	cursor: pointer;
	z-index: 1001;
	padding: 0.5rem;
}

/* ========================================
           MOBILE NAVIGATION
           ======================================== */
@media (max-width: 968px) {
	header .container {
		max-width: 100%;
		padding: 0 1.5rem;
	}

	.nav-toggle {
		display: block;
		flex-shrink: 0;
	}

	nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 280px;
		height: 100vh;
		background: rgba(10, 10, 10, 0.98);
		backdrop-filter: blur(20px);
		flex-direction: column;
		justify-content: flex-start;
		padding: 5rem 2rem 2rem;
		border-left: 1px solid rgba(0, 255, 136, 0.1);
		transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
		gap: 0;
		box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
	}

	nav.active {
		right: 0;
	}

	nav ul {
		flex-direction: column;
		gap: 0;
		width: 100%;
		align-items: flex-start;
	}

	nav ul li {
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	}

	nav ul li a {
		display: block;
		padding: 1rem 0;
		font-size: 1.1rem;
		width: 100%;
	}

	nav ul li a::after {
		bottom: 0.8rem;
	}

	.theme-toggle {
		margin-top: 2rem;
		width: 100%;
		text-align: center;
		justify-content: center;
		display: flex;
	}

	/* Hamburger Animation */
	.nav-toggle {
		width: 30px;
		height: 24px;
		position: relative;
	}

	.nav-toggle span {
		display: block;
		position: absolute;
		height: 3px;
		width: 100%;
		background: var(--accent);
		border-radius: 3px;
		opacity: 1;
		left: 0;
		transform: rotate(0deg);
		transition: all 0.25s ease-in-out;
	}

	.nav-toggle span:nth-child(1) {
		top: 0px;
	}

	.nav-toggle span:nth-child(2) {
		top: 10px;
	}

	.nav-toggle span:nth-child(3) {
		top: 20px;
	}

	.nav-toggle.active span:nth-child(1) {
		top: 10px;
		transform: rotate(135deg);
	}

	.nav-toggle.active span:nth-child(2) {
		opacity: 0;
		left: -60px;
	}

	.nav-toggle.active span:nth-child(3) {
		top: 10px;
		transform: rotate(-135deg);
	}

	/* Overlay when menu is open */
	body.menu-open::after {
		content: "";
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.7);
		z-index: 999;
		animation: fadeIn 0.3s ease;
	}

	@keyframes fadeIn {
		from {
			opacity: 0;
		}
		to {
			opacity: 1;
		}
	}

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

/* ========================================
           HERO + ABOUT SECTION
           ======================================== */
#hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 8rem 0 4rem;
	position: relative;
	z-index: 1;
}

#hero h2 {
	font-size: clamp(2.5rem, 6vw, 4rem);
	font-weight: 700;
	margin-bottom: 1.5rem;
	opacity: 0;
	animation: fadeInUp 0.8s ease forwards;
}

#hero h3 {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 600;
	color: var(--text-secondary);
	margin-bottom: 3rem;
	min-height: 4rem;
	opacity: 0;
	animation: fadeInUp 0.8s ease 0.2s forwards;
}

.typing-text {
	display: inline-block;
}

#dynamic-text {
	color: var(--accent);
	font-weight: 600;
	border-right: 3px solid var(--accent);
	padding-right: 8px;
	animation: blink 0.7s step-end infinite;
}

.about-text {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--text-secondary);
	max-width: 900px;
	margin: 0 auto 3rem;
	text-align: left;
	background: var(--card-bg);
	padding: 2.5rem;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	opacity: 0;
	animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
	opacity: 0;
	animation: fadeInUp 0.8s ease 0.6s forwards;
}

.btn {
	display: inline-block;
	padding: 1rem 2.5rem;
	background: var(--accent);
	color: var(--bg-primary);
	font-weight: 600;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	font-size: 1rem;
	border: 2px solid var(--accent);
}

.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:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

.btn-outline {
	background: transparent;
	color: var(--accent);
	border: 2px solid var(--accent);
}

.btn-outline:hover {
	background: var(--accent);
	color: var(--bg-primary);
}

@keyframes blink {
	50% {
		border-color: transparent;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.scroll-indicator {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	animation: bounce 2s infinite;
}

.scroll-indicator::before {
	content: "↓";
	color: var(--accent);
	font-size: 2rem;
}

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateX(-50%) translateY(0);
	}
	40% {
		transform: translateX(-50%) translateY(-20px);
	}
	60% {
		transform: translateX(-50%) translateY(-10px);
	}
}

/* ========================================
           TRUSTED BY SECTION
           ======================================== */
#trusted-by {
	padding: 4rem 0;
	background: var(--card-bg);
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.trusted-heading {
	font-size: clamp(1.5rem, 3vw, 2rem);
	text-align: center;
	margin-bottom: 3rem;
	color: var(--text-primary);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	opacity: 0.8;
}

.logos-slider {
	width: 100%;
	overflow: hidden;
	position: relative;
}

/* REMOVE fade overlays completely */
.logos-slider::before,
.logos-slider::after {
	display: none;
}

.logos-track {
	display: flex;
	gap: 4rem;
	animation: scroll 30s linear infinite;
	width: max-content;
}

.logos-track:hover {
	animation-play-state: paused;
}

.logo-item {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	height: 80px;
	padding: 1rem;

	/* NOTHING that affects brightness */
	background: transparent;
	border: none;
	box-shadow: none;

	transform: none;
}

.logo-item:hover {
	transform: translateY(-5px);
}

.logo-item img {
	display: block;
	max-width: 140px;
	max-height: 60px;
	width: auto;
	height: auto;
	object-fit: contain;

	/* FORCE full visibility */
	filter: none !important;
	opacity: 1 !important;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
	.logos-track {
		gap: 2rem;
		animation-duration: 20s;
	}

	.logo-item {
		min-width: 150px;
		height: 70px;
	}

	.logo-item img {
		max-width: 120px;
		max-height: 50px;
	}

	.logos-slider::before,
	.logos-slider::after {
		width: 50px;
	}
}

/* ========================================
           SKILLS SECTION
           ======================================== */
#skills {
	padding: 6rem 0;
	position: relative;
	max-width: 1400px;
	margin: 0 auto;
}

#skills::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 600px;
	height: 600px;
	background: radial-gradient(
		circle,
		rgba(0, 255, 136, 0.1) 0%,
		transparent 70%
	);
	transform: translate(-50%, -50%);
	animation: pulse 4s ease-in-out infinite;
	pointer-events: none;
}

@keyframes pulse {
	0%,
	100% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 0.5;
	}
	50% {
		transform: translate(-50%, -50%) scale(1.2);
		opacity: 0.8;
	}
}

.section-header {
	text-align: center;
	margin-bottom: 5rem;
	position: relative;
	z-index: 1;
}

.section-header h2 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	background: linear-gradient(135deg, #00ff88, #00ddff, #00ff88);
	background-size: 200% 200%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: gradientShift 3s ease infinite;
	margin-bottom: 1rem;
}

@keyframes gradientShift {
	0%,
	100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}

.section-header p {
	font-size: 1.2rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
}

.skills-container {
	display: grid;
	gap: 3rem;
	position: relative;
	z-index: 1;
}

.skills-category {
	background: linear-gradient(
		135deg,
		rgba(26, 26, 26, 0.8),
		rgba(17, 17, 17, 0.6)
	);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 24px;
	padding: 2.5rem;
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
}

.skills-category::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 255, 136, 0.03), transparent);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.skills-category:hover::before {
	opacity: 1;
}

.skills-category:hover {
	transform: translateY(-8px);
	border-color: rgba(0, 255, 136, 0.3);
	box-shadow: 0 20px 60px rgba(0, 255, 136, 0.15);
}

.category-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2rem;
}

.category-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #00ff88, #00cc6f);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	box-shadow: 0 8px 20px rgba(0, 255, 136, 0.3);
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}

.category-header h3 {
	font-size: 1.8rem;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: -0.5px;
}

.skills-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: flex-start;
}

.skill {
	position: relative;
	padding: 0.8rem 1.8rem;
	background: rgba(26, 26, 26, 0.8);
	border: 2px solid rgba(0, 255, 136, 0.3);
	border-radius: 12px;
	font-size: 0.95rem;
	font-weight: 600;
	color: #00ff88;
	cursor: pointer;
	transition: all 0.3s ease;
	overflow: hidden;
}

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

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

.skill:hover {
	background: rgba(0, 255, 136, 0.15);
	border-color: #00ff88;
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
	color: #ffffff;
}

.skills-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-top: 4rem;
	padding-top: 4rem;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-card {
	text-align: center;
	padding: 2rem;
	background: rgba(26, 26, 26, 0.5);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: all 0.3s ease;
}

.stat-card:hover {
	border-color: rgba(0, 255, 136, 0.3);
	transform: translateY(-5px);
}

.stat-number {
	font-size: 3rem;
	font-weight: 800;
	background: linear-gradient(135deg, #00ff88, #00ddff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 1rem;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* ========================================
           PROJECTS SECTION
           ======================================== */
#projects {
	padding: 6rem 0;
	position: relative;
	z-index: 1;
}

.projects-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2.5rem;
	margin-top: 3rem;
}

.project-card {
	background: linear-gradient(
		135deg,
		rgba(26, 26, 26, 0.9),
		rgba(17, 17, 17, 0.7)
	);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 20px;
	padding: 2rem;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.project-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), transparent);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.project-card:hover {
	transform: translateY(-10px);
	border-color: rgba(0, 255, 136, 0.3);
	box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
}

.project-card:hover::before {
	opacity: 1;
}

.project-image {
	font-size: 4rem;
	text-align: center;
	margin-bottom: 1.5rem;
}

.project-content {
	position: relative;
	z-index: 1;
}

.project-type {
	display: inline-block;
	padding: 0.4rem 1rem;
	background: rgba(0, 255, 136, 0.1);
	border: 1px solid rgba(0, 255, 136, 0.3);
	border-radius: 20px;
	font-size: 0.85rem;
	color: var(--accent);
	font-weight: 600;
	margin-bottom: 1rem;
}

.project-content h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.project-content p {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
}

.project-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.project-tag {
	padding: 0.4rem 0.9rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	font-size: 0.85rem;
	color: var(--text-secondary);
}

.project-links {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.project-link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--accent);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	transition: all 0.3s ease;
}

.project-link:hover {
	gap: 0.8rem;
	color: var(--accent-hover);
}

/* ========================================
           ARTICLES SECTION
           ======================================== */
#articles {
	padding: 6rem 0;
	text-align: center;
	position: relative;
	z-index: 1;
}

.articles-intro {
	max-width: 650px;
	margin: 0 auto 3rem;
	font-size: 1.1rem;
	color: var(--text-secondary);
}

.articles-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2.5rem;
	margin-top: 3rem;
}

.article-card {
	background: linear-gradient(
		135deg,
		rgba(26, 26, 26, 0.9),
		rgba(17, 17, 17, 0.7)
	);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 20px;
	padding: 2rem;
	text-decoration: none;
	color: var(--text-primary);
	transition: all 0.4s ease;
	display: flex;
	flex-direction: column;
	text-align: left;
	position: relative;
	overflow: hidden;
}

.article-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), transparent);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.article-card:hover {
	transform: translateY(-10px);
	border-color: rgba(0, 255, 136, 0.3);
	box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
}

.article-card:hover::before {
	opacity: 1;
}

.article-header {
	position: relative;
	z-index: 1;
	margin-bottom: 1rem;
}

.article-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.article-category {
	padding: 0.4rem 1rem;
	background: rgba(0, 255, 136, 0.1);
	border: 1px solid rgba(0, 255, 136, 0.3);
	border-radius: 20px;
	font-size: 0.85rem;
	color: var(--accent);
	font-weight: 600;
}

.article-date {
	display: flex;
	align-items: center;
	gap: 0.3rem;
	font-size: 0.9rem;
	color: var(--text-secondary);
}

.article-header h3 {
	font-size: 1.4rem;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
	line-height: 1.4;
}

.article-body {
	position: relative;
	z-index: 1;
	flex-grow: 1;
	margin-bottom: 1.5rem;
}

.article-body p {
	font-size: 1rem;
	color: var(--text-secondary);
	line-height: 1.7;
}

.article-footer {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.article-stats {
	display: flex;
	gap: 1.5rem;
}

.article-stat {
	display: flex;
	align-items: center;
	gap: 0.3rem;
	font-size: 0.9rem;
	color: var(--text-secondary);
}

.read-more {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--accent);
	font-weight: 600;
	font-size: 0.95rem;
	transition: gap 0.3s ease;
}

.article-card:hover .read-more {
	gap: 0.8rem;
}

/* ========================================
           WHAT I CREATE SECTION
           ======================================== */
#what-i-create {
	padding: 6rem 0;
	text-align: center;
	position: relative;
	z-index: 1;
}

#what-i-create h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 1rem;
	font-weight: 700;
}

.create-intro {
	max-width: 600px;
	margin: 0 auto 3rem;
	font-size: 1.1rem;
	line-height: 1.6;
	color: var(--text-secondary);
}

.create-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
}

.create-box {
	background: var(--card-bg);
	padding: 2rem 1.5rem;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	transition:
		transform 0.3s,
		box-shadow 0.3s;
}

.create-box:hover {
	transform: translateY(-6px);
	box-shadow: 0 6px 16px rgba(0, 255, 136, 0.2);
	border-color: rgba(0, 255, 136, 0.2);
}

.create-box .icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.create-box h3 {
	margin-top: 0.5rem;
	font-size: 1.1rem;
	font-weight: 600;
}

/* ========================================
           CERTIFICATIONS SECTION
           ======================================== */
#certifications {
	padding: 6rem 0;
	position: relative;
	z-index: 1;
}

.section-title {
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 3rem;
	text-align: center;
	position: relative;
	display: inline-block;
	left: 50%;
	transform: translateX(-50%);
	color: var(--text-primary);
}

.section-title::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: var(--accent);
	border-radius: 2px;
}

.certifications-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.cert-card {
	background: var(--card-bg);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.4s ease;
	position: relative;
}

.cert-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--accent), #00d4aa);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
	z-index: 1;
}

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

.cert-card:hover {
	transform: translateY(-10px);
	border-color: rgba(0, 255, 136, 0.3);
	box-shadow: 0 20px 50px rgba(0, 255, 136, 0.2);
}

.cert-image-wrapper {
	position: relative;
	width: 100%;
	height: 280px;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.2);
}

.cert-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

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

.cert-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	opacity: 0;
	transition: opacity 0.3s ease;
	color: var(--accent);
	cursor: pointer;
}

.cert-card:hover .cert-overlay {
	opacity: 1;
}

.cert-overlay span {
	font-size: 1.1rem;
	font-weight: 600;
	color: white;
}

.cert-info {
	padding: 1.5rem;
}

.cert-title {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
	line-height: 1.3;
}

.cert-issuer {
	font-size: 1rem;
	color: var(--accent);
	font-weight: 500;
	margin-bottom: 1rem;
}

.cert-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.badge-text {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--accent);
	background: rgba(0, 255, 136, 0.1);
	padding: 0.4rem 1rem;
	border-radius: 20px;
	border: 1px solid rgba(0, 255, 136, 0.3);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Animation on scroll */
.cert-card {
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 0.6s ease forwards;
}

.cert-card:nth-child(1) {
	animation-delay: 0.1s;
}

.cert-card:nth-child(2) {
	animation-delay: 0.2s;
}

.cert-card:nth-child(3) {
	animation-delay: 0.3s;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
	.certifications-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.cert-image-wrapper {
		height: 240px;
	}

	.cert-info {
		padding: 1.25rem;
	}

	.cert-title {
		font-size: 1.2rem;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	.certifications-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ======================================== */
/*        SPEAKING ENGAGEMENTS SECTION     */
/* ======================================== */
#speaking {
	padding: 6rem 2rem;
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
}

.section-title {
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 1.5rem;
	text-align: center;
	position: relative;
	display: inline-block;
	left: 50%;
	transform: translateX(-50%);
	color: var(--text-primary);
}

.section-title::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: var(--accent);
	border-radius: 2px;
}

.section-description {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 3rem;
	font-size: 1.1rem;
	color: rgba(224, 224, 224, 0.8);
	line-height: 1.8;
}

.speaking-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.talk-card {
	background: var(--card-bg);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.4s ease;
	position: relative;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 0.6s ease forwards;
}

.talk-card:nth-child(1) {
	animation-delay: 0.1s;
}
.talk-card:nth-child(2) {
	animation-delay: 0.2s;
}
.talk-card:nth-child(3) {
	animation-delay: 0.3s;
}
.talk-card:nth-child(4) {
	animation-delay: 0.4s;
}

.talk-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--accent), #00d4aa);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
	z-index: 1;
}

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

.talk-card:hover {
	transform: translateY(-10px);
	border-color: rgba(0, 255, 136, 0.3);
	box-shadow: 0 20px 50px rgba(0, 255, 136, 0.2);
}

.talk-image-wrapper {
	position: relative;
	width: 100%;
	height: 280px;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.2);
}

.talk-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

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

.talk-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	opacity: 0;
	transition: opacity 0.3s ease;
	color: var(--accent);
	cursor: pointer;
}

.talk-card:hover .talk-overlay {
	opacity: 1;
}

.talk-overlay svg {
	width: 48px;
	height: 48px;
}

.talk-overlay span {
	font-size: 1.1rem;
	font-weight: 600;
	color: white;
}

.talk-info {
	padding: 1.5rem;
}

.talk-title {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
	line-height: 1.3;
}

.talk-event {
	font-size: 1rem;
	color: var(--accent);
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.talk-meta {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 1rem;
	font-size: 0.9rem;
	color: rgba(224, 224, 224, 0.7);
}

.talk-meta-item {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.talk-meta-item svg {
	width: 16px;
	height: 16px;
}

.talk-description {
	color: rgba(224, 224, 224, 0.8);
	margin-bottom: 1rem;
	font-size: 0.95rem;
}

.talk-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.tag-badge {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--accent);
	background: rgba(0, 255, 136, 0.1);
	padding: 0.4rem 1rem;
	border-radius: 20px;
	border: 1px solid rgba(0, 255, 136, 0.3);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.cta-section {
	margin-top: 4rem;
	padding: 2rem;
	background: rgba(0, 255, 136, 0.05);
	border: 1px solid rgba(0, 255, 136, 0.2);
	border-radius: 16px;
	text-align: center;
}

.cta-section h3 {
	font-size: 1.5rem;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.cta-section p {
	color: rgba(224, 224, 224, 0.8);
	font-size: 1.05rem;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
	#speaking {
		padding: 4rem 1rem;
	}

	.speaking-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.talk-image-wrapper {
		height: 240px;
	}

	.talk-info {
		padding: 1.25rem;
	}

	.talk-title {
		font-size: 1.2rem;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	.speaking-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ======================================== */
/*           CONTACT SECTION                */
/* ======================================== */
#contact {
	padding: 6rem 2rem;
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
}

.section-title {
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 1.5rem;
	text-align: center;
	position: relative;
	display: inline-block;
	left: 50%;
	transform: translateX(-50%);
	color: var(--text-primary);
}

.section-title::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: var(--accent);
	border-radius: 2px;
}

.section-description {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 3rem;
	font-size: 1.1rem;
	color: rgba(224, 224, 224, 0.8);
	line-height: 1.8;
}

.contact-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

/* Contact Cards */
.contact-card {
	background: var(--card-bg);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	padding: 2rem;
	text-align: center;
	transition: all 0.4s ease;
	position: relative;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 0.6s ease forwards;
}

.contact-card:nth-child(1) {
	animation-delay: 0.1s;
}
.contact-card:nth-child(2) {
	animation-delay: 0.2s;
}
.contact-card:nth-child(3) {
	animation-delay: 0.3s;
}
.contact-card:nth-child(4) {
	animation-delay: 0.4s;
}

.contact-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--accent), #00d4aa);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
	border-radius: 16px 16px 0 0;
}

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

.contact-card:hover {
	transform: translateY(-10px);
	border-color: rgba(0, 255, 136, 0.3);
	box-shadow: 0 20px 50px rgba(0, 255, 136, 0.2);
}

.contact-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 1.5rem;
	background: rgba(0, 255, 136, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid rgba(0, 255, 136, 0.3);
	transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
	background: rgba(0, 255, 136, 0.2);
	border-color: var(--accent);
	transform: scale(1.1);
}

.contact-icon svg {
	width: 30px;
	height: 30px;
	stroke: var(--accent);
}

.contact-title {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.contact-info {
	font-size: 1rem;
	color: var(--accent);
	margin-bottom: 1rem;
	word-break: break-word;
}

.contact-link {
	display: inline-block;
	padding: 0.75rem 2rem;
	background: rgba(0, 255, 136, 0.1);
	color: var(--accent);
	text-decoration: none;
	border-radius: 25px;
	border: 1px solid rgba(0, 255, 136, 0.3);
	font-weight: 600;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 0.85rem;
}

.contact-link:hover {
	background: var(--accent);
	color: var(--bg-primary);
	border-color: var(--accent);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

/* Contact Form */
.contact-form-wrapper {
	grid-column: 1 / -1;
	margin-top: 2rem;
}

.contact-form {
	background: var(--card-bg);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	padding: 2.5rem;
	position: relative;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 0.6s ease forwards;
	animation-delay: 0.5s;
}

.contact-form::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--accent), #00d4aa);
	border-radius: 16px 16px 0 0;
}

.form-title {
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 2rem;
	text-align: center;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: var(--text-primary);
}

.form-input,
.form-textarea {
	width: 100%;
	padding: 1rem;
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	color: var(--text-primary);
	font-size: 1rem;
	font-family: inherit;
	transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.form-textarea {
	resize: vertical;
	min-height: 150px;
}

.form-button {
	width: 100%;
	padding: 1rem 2rem;
	background: var(--accent);
	color: var(--bg-primary);
	border: none;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.form-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

.form-button:active {
	transform: translateY(0);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
	#contact {
		padding: 4rem 1rem;
	}

	.contact-container {
		grid-template-columns: 1fr;
	}

	.contact-form {
		padding: 1.5rem;
	}

	.form-title {
		font-size: 1.5rem;
	}
}

/* ========================================
           FOOTER
           ======================================== */
footer {
	background: var(--card-bg);
	color: var(--text-primary);
	text-align: center;
	padding: 2rem 0;
	margin-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	position: relative;
	z-index: 1;
}

/* ========================================
           ANIMATIONS
           ======================================== */
section {
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 0.6s ease-out,
		transform 0.6s ease-out;
}

section.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ========================================
           RESPONSIVE DESIGN
           ======================================== */
@media (max-width: 968px) {
	html {
		overflow-x: hidden;
	}

	body {
		overflow-x: hidden;
		width: 100%;
		position: relative;
	}
}

@media (max-width: 768px) {
	.container {
		padding: 0 1.5rem;
		max-width: 100%;
	}

	#hero h2 {
		font-size: 2rem;
	}

	#hero h3 {
		font-size: 1.8rem;
	}

	.about-text {
		padding: 1.5rem;
	}

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

	.btn {
		width: 100%;
		max-width: 300px;
		text-align: center;
	}

	#skills {
		padding: 4rem 0;
	}
	.skills-stats {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	#projects {
		padding: 4rem 0;
	}

	#articles {
		padding: 4rem 0;
	}

	#what-i-create {
		padding: 4rem 0;
	}

	#contact {
		padding: 4rem 0;
	}
}
