:root {
	--primary: #0f4c81;
	--accent: #f97316;
	--accent2: #06b6d4;
	--dark: #0b1120;
	--dark2: #111827;
	--card-bg: #161f2e;
	--text: #e2e8f0;
	--muted: #94a3b8;
	--border: rgba(255, 255, 255, 0.07);
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Plus Jakarta Sans', sans-serif;
	background: var(--dark);
	color: var(--text);
	overflow-x: hidden;
}

body::before {
	content: '';
	position: fixed;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
	pointer-events: none;
	z-index: 0;
	opacity: 0.35;
}

.navbar {
	background: rgba(11, 17, 32, 0.85) !important;
	backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--border);
	padding: 1rem 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: all .3s ease;
}

.navbar-brand {
	font-family: 'Syne', sans-serif;
	font-size: 1.3rem;
	font-weight: 800;
	letter-spacing: -0.5px;
	color: #fff !important;
}

.navbar-brand span {
	color: var(--accent);
}

.nav-link {
	color: var(--muted) !important;
	font-weight: 500;
	font-size: 0.88rem;
	letter-spacing: 0.3px;
	transition: color .2s;
	padding: 0.4rem 0.85rem !important;
}

.nav-link:hover, .nav-link.active {
	color: #fff !important;
}

.dropdown-menu {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 0.4rem;
	min-width: 180px;
}

.dropdown-item {
	color: var(--muted);
	border-radius: 8px;
	font-size: 0.88rem;
	font-weight: 500;
	padding: 0.5rem 0.9rem;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all .2s;
}

.dropdown-item:hover {
	background: rgba(249, 115, 22, 0.12);
	color: var(--accent);
}

.btn-hire {
	background: var(--accent);
	color: #fff !important;
	border-radius: 50px;
	padding: 0.45rem 1.2rem !important;
	font-size: 0.85rem;
	font-weight: 700;
	transition: all .25s;
}

.btn-hire:hover {
	background: #ea6c0a;
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
}

.navbar-toggler {
	border: 1px solid var(--border);
	padding: 0.35rem 0.65rem;
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28148, 163, 184, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding: 100px 0 60px;
}

.hero-bg-mesh {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 60% at 65% 50%, rgba(15, 76, 129, 0.35) 0%, transparent 70%),
		radial-gradient(ellipse 50% 40% at 20% 80%, rgba(6, 182, 212, 0.12) 0%, transparent 60%),
		radial-gradient(ellipse 40% 50% at 80% 10%, rgba(249, 115, 22, 0.08) 0%, transparent 60%);
	pointer-events: none;
}

.hero-grid-lines {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
	background-size: 60px 60px;
	pointer-events: none;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(249, 115, 22, 0.1);
	border: 1px solid rgba(249, 115, 22, 0.25);
	color: var(--accent);
	border-radius: 50px;
	padding: 0.4rem 1rem;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.4px;
	margin-bottom: 1.5rem;
	animation: fadeInDown 0.6s ease both;
}

.hero-badge .dot {
	width: 7px;
	height: 7px;
	background: var(--accent);
	border-radius: 50%;
	animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
	0%, 100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: 0.5;
		transform: scale(0.7);
	}
}

.hero-title {
	font-family: 'Syne', sans-serif;
	font-size: clamp(2.6rem, 5.5vw, 4.5rem);
	font-weight: 800;
	line-height: 1.07;
	letter-spacing: -2px;
	color: #fff;
	animation: fadeInUp 0.7s 0.1s ease both;
}

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

.hero-subtitle {
	color: var(--muted);
	font-size: 1.05rem;
	line-height: 1.7;
	max-width: 520px;
	margin-top: 1.2rem;
	animation: fadeInUp 0.7s 0.2s ease both;
}

.hero-stats {
	display: flex;
	gap: 2rem;
	margin-top: 2rem;
	animation: fadeInUp 0.7s 0.3s ease both;
	flex-wrap: wrap;
}

.hero-stat-item {
	text-align: left;
}

.hero-stat-num {
	font-family: 'Syne', sans-serif;
	font-size: 2rem;
	font-weight: 800;
	color: #fff;
	line-height: 1;
}

.hero-stat-num span {
	color: var(--accent);
}

.hero-stat-label {
	font-size: 0.78rem;
	color: var(--muted);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-top: 4px;
}

.hero-cta {
	display: flex;
	gap: 12px;
	margin-top: 2.2rem;
	flex-wrap: wrap;
	animation: fadeInUp 0.7s 0.4s ease both;
}

.btn-primary-custom {
	background: var(--accent);
	color: #fff;
	border: none;
	border-radius: 50px;
	padding: 0.75rem 1.8rem;
	font-weight: 700;
	font-size: 0.9rem;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all .25s;
	text-decoration: none;
}

.btn-primary-custom:hover {
	background: #ea6c0a;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

.btn-outline-custom {
	background: transparent;
	color: var(--text);
	border: 1px solid var(--border);
	border-radius: 50px;
	padding: 0.75rem 1.8rem;
	font-weight: 600;
	font-size: 0.9rem;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all .25s;
	text-decoration: none;
}

.btn-outline-custom:hover {
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.2);
}

.hero-photo-wrap {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	animation: fadeInRight 0.8s 0.2s ease both;
}

.hero-photo-ring {
	position: absolute;
	width: 340px;
	height: 340px;
	border-radius: 50%;
	border: 1px solid rgba(249, 115, 22, 0.25);
	animation: spin-slow 18s linear infinite;
}

.hero-photo-ring::before {
	content: '';
	position: absolute;
	top: -4px;
	right: 40px;
	width: 10px;
	height: 10px;
	background: var(--accent);
	border-radius: 50%;
}

.hero-photo-ring-2 {
	position: absolute;
	width: 380px;
	height: 380px;
	border-radius: 50%;
	border: 1px dashed rgba(6, 182, 212, 0.15);
	animation: spin-slow 28s linear infinite reverse;
}

@keyframes spin-slow {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.hero-photo-frame {
	position: relative;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid rgba(249, 115, 22, 0.4);
	box-shadow: 0 0 60px rgba(249, 115, 22, 0.15), 0 0 0 8px rgba(249, 115, 22, 0.05);
	background: var(--card-bg);
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-photo-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}

.photo-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	color: var(--muted);
	font-size: 0.8rem;
	text-align: center;
	padding: 1rem;
}

.photo-placeholder i {
	font-size: 4rem;
	color: rgba(249, 115, 22, 0.4);
}

.tech-badge-float {
	position: absolute;
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 0.5rem 0.9rem;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--text);
	display: flex;
	align-items: center;
	gap: 6px;
	backdrop-filter: blur(10px);
	white-space: nowrap;
}

.tech-badge-float.tb1 {
	top: 30px;
	left: -20px;
}

.tech-badge-float.tb2 {
	bottom: 50px;
	right: -15px;
}

.tech-badge-float.tb3 {
	bottom: 10px;
	left: 10px;
}

section {
	position: relative;
	z-index: 1;
}

.section-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--accent);
	margin-bottom: 0.8rem;
}

.section-label::before {
	content: '';
	width: 20px;
	height: 2px;
	background: var(--accent);
	border-radius: 2px;
}

.section-title {
	font-family: 'Syne', sans-serif;
	font-size: clamp(1.8rem, 3.5vw, 2.8rem);
	font-weight: 800;
	color: #fff;
	letter-spacing: -1px;
	line-height: 1.15;
}

.section-title span {
	color: var(--accent);
}

#skills {
	padding: 90px 0;
	background: var(--dark2);
}

.skill-category-card {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 1.5rem;
	height: 100%;
	transition: all .3s;
}

.skill-category-card:hover {
	border-color: rgba(249, 115, 22, 0.3);
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.skill-category-title {
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--accent);
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 8px;
}

.skill-tag {
	display: inline-flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--border);
	color: var(--text);
	border-radius: 6px;
	padding: 0.3rem 0.7rem;
	font-size: 0.8rem;
	font-weight: 500;
	margin: 3px;
	transition: all .2s;
}

.skill-tag:hover {
	background: rgba(249, 115, 22, 0.1);
	border-color: rgba(249, 115, 22, 0.3);
	color: var(--accent);
}

#experience {
	padding: 90px 0;
}

.timeline {
	position: relative;
}

.timeline::before {
	content: '';
	position: absolute;
	left: 20px;
	top: 0;
	bottom: 0;
	width: 1px;
	background: linear-gradient(to bottom, var(--accent), transparent);
}

.timeline-item {
	position: relative;
	padding-left: 60px;
	padding-bottom: 2.5rem;
}

.timeline-dot {
	position: absolute;
	left: 12px;
	top: 6px;
	width: 17px;
	height: 17px;
	border-radius: 50%;
	background: var(--accent);
	border: 3px solid var(--dark);
	box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.2);
}

.exp-card {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 1.5rem;
	transition: all .3s;
}

.exp-card:hover {
	border-color: rgba(249, 115, 22, 0.25);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.exp-company {
	font-family: 'Syne', sans-serif;
	font-size: 1.05rem;
	font-weight: 800;
	color: #fff;
}

.exp-role {
	color: var(--accent);
	font-size: 0.85rem;
	font-weight: 600;
	margin-top: 2px;
}

.exp-period {
	font-size: 0.78rem;
	color: var(--muted);
	font-weight: 500;
}

.exp-desc {
	color: var(--muted);
	font-size: 0.88rem;
	line-height: 1.7;
	margin-top: 0.75rem;
}

.exp-stack {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 0.85rem;
}

.stack-pill {
	background: rgba(15, 76, 129, 0.3);
	border: 1px solid rgba(15, 76, 129, 0.5);
	color: var(--accent2);
	border-radius: 50px;
	padding: 0.2rem 0.65rem;
	font-size: 0.75rem;
	font-weight: 600;
}

#projects {
	padding: 90px 0;
	background: var(--dark2);
}

.project-tabs .nav-link {
	background: transparent;
	border: 1px solid var(--border) !important;
	color: var(--muted) !important;
	border-radius: 50px !important;
	padding: 0.4rem 1rem !important;
	font-size: 0.82rem;
	font-weight: 600;
	transition: all .2s;
}

.project-tabs .nav-link.active, .project-tabs .nav-link:hover {
	background: var(--accent) !important;
	border-color: var(--accent) !important;
	color: #fff !important;
}

.project-card {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 1.4rem;
	height: 100%;
	transition: all .3s;
	cursor: default;
}

.project-card:hover {
	border-color: rgba(249, 115, 22, 0.3);
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: rgba(249, 115, 22, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
	font-size: 1.2rem;
	margin-bottom: 0.9rem;
}

.project-name {
	font-weight: 700;
	color: #fff;
	font-size: 0.95rem;
}

.project-desc {
	color: var(--muted);
	font-size: 0.82rem;
	line-height: 1.6;
	margin-top: 4px;
}

#contact {
	padding: 90px 0;
}

.contact-card {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 3rem;
}

.contact-info-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 1rem 0;
	border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child {
	border-bottom: none;
}

.contact-icon {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	background: rgba(249, 115, 22, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
	font-size: 1.1rem;
	flex-shrink: 0;
}

.contact-label {
	font-size: 0.75rem;
	color: var(--muted);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.contact-value {
	color: #fff;
	font-weight: 600;
	font-size: 0.92rem;
	text-decoration: none;
	transition: color .2s;
}

.contact-value:hover {
	color: var(--accent);
}

.social-links {
	display: flex;
	gap: 10px;
	margin-top: 1.5rem;
}

.social-btn {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--muted);
	font-size: 1.1rem;
	text-decoration: none;
	transition: all .25s;
}

.social-btn:hover {
	background: var(--accent);
	border-color: var(--accent);
	color: #fff;
	transform: translateY(-3px);
}

.form-control-custom {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--border);
	border-radius: 10px;
	color: #fff;
	padding: 0.75rem 1rem;
	font-size: 0.9rem;
	font-family: 'Plus Jakarta Sans', sans-serif;
	transition: all .2s;
	width: 100%;
}

.form-control-custom:focus {
	outline: none;
	border-color: rgba(249, 115, 22, 0.5);
	background: rgba(255, 255, 255, 0.06);
	box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-control-custom::placeholder {
	color: var(--muted);
}

footer {
	background: var(--dark2);
	border-top: 1px solid var(--border);
	padding: 2rem 0;
	text-align: center;
	color: var(--muted);
	font-size: 0.83rem;
}

footer a {
	color: var(--accent);
	text-decoration: none;
}

footer a:hover {
	text-decoration: underline;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(24px);
	}

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

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-16px);
	}

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

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}

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

.fade-in-up {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity .6s ease, transform .6s ease;
}

.fade-in-up.visible {
	opacity: 1;
	transform: translateY(0);
}

.gradient-divider {
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--border) 30%, var(--border) 70%, transparent);
}

::-webkit-scrollbar {
	width: 5px;
}

::-webkit-scrollbar-track {
	background: var(--dark);
}

::-webkit-scrollbar-thumb {
	background: rgba(249, 115, 22, 0.4);
	border-radius: 3px;
}

@media (max-width: 991px) {
	#hero {
		padding: 80px 0 60px;
		text-align: center;
	}

	.hero-subtitle {
		margin: 1rem auto 0;
	}

	.hero-stats {
		justify-content: center;
	}

	.hero-cta {
		justify-content: center;
	}

	.hero-photo-wrap {
		margin-top: 3rem;
	}

	.tech-badge-float.tb1 {
		left: 0;
	}

	.tech-badge-float.tb2 {
		right: 0;
	}
}

@media (max-width: 576px) {
	.hero-photo-frame {
		width: 220px;
		height: 220px;
	}

	.hero-photo-ring {
		width: 270px;
		height: 270px;
	}

	.hero-photo-ring-2 {
		width: 310px;
		height: 310px;
	}

	.contact-card {
		padding: 1.5rem;
	}
}