@charset "UTF-8";
/* Reset & Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
}

body {
	background-color: #121212;
	color: #f8fafc;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	line-height: 1.6;
}

/* Typography */
h1 {
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	line-height: 1.1;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.2;
	margin-bottom: 2rem;
}

h3 {
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	margin-bottom: 1rem;
}

p {
	color: #94a3b8;
	font-size: clamp(1rem, 1.5vw, 1.125rem);
}

/* Header & Navigation */
.header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	background: rgba(18, 18, 18, 0.8);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.nav-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 1.25rem 2rem;
}
.nav-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.nav-logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: #f8fafc;
	text-decoration: none;
	background: linear-gradient(135deg, #9d5cff 0%, #c17bff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.nav-menu {
	display: flex;
	gap: 2rem;
	align-items: center;
}
.nav-menu a {
	color: #94a3b8;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	font-family: 'Fira Code', monospace;
	transition: all 0.3s ease-in-out;
	position: relative;
}
.nav-menu a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(135deg, #9d5cff 0%, #c17bff 100%);
	transition: all 0.3s ease-in-out;
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
	width: 100%;
}
.nav-menu a.active {
	color: #9d5cff;
}
.nav-menu a.nav-cta::after {
	display: none;
}
.nav-cta {
	padding: 0.5rem 1.25rem;
	background: linear-gradient(135deg, #9d5cff 0%, #c17bff 100%);
	border-radius: 4px;
	color: #f8fafc !important;
}

/* Section Common Styles */
section {
	padding: 8rem 2rem;
	max-width: 1400px;
	margin: 0 auto;
	animation: fadeUp 0.6s ease-out forwards;
}

.section-tag {
	color: #9d5cff;
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 1rem;
	display: block;
}

/* Hero Section */
.hero {
	padding-top: 10rem;
}
.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}
.hero-text {
	margin-bottom: 3rem;
}
.hero-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}
.hero-image {
	position: relative;
}

.stat {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.stat-value {
	font-size: 2.5rem;
	font-weight: 700;
	color: #9d5cff;
	transition: color 0.3s ease;
}
.stat-label {
	color: #94a3b8;
	font-size: 0.875rem;
}

.number-changed {
	color: #9d5cff;
}

.image-container {
	width: 100%;
	aspect-ratio: 1;
	border-radius: 1rem;
	position: relative;
	overflow: visible;
}
.image-container img {
	width: 120%;
	height: 120%;
	-o-object-fit: contain;
	object-fit: contain;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.floating-card {
	position: absolute;
	bottom: 2rem;
	right: -2rem;
	z-index: 2;
	background: #1e1e1e;
	padding: 1rem 1.5rem;
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.floating-card i {
	color: #9d5cff;
	font-size: 1.25rem;
}

/* Work Section */
.work-showcase {
	display: flex;
	flex-direction: column;
	gap: 4rem;
}

.project-card {
	padding: 2rem;
	background: #1e1e1e;
	border-radius: 1rem;
	transition: all 0.3s ease-in-out;
}
.project-card:hover {
	transform: translateY(-5px);
}
.project-card.featured {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	padding: 2rem;
}
.project-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.project-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}
.project-number {
	color: #9d5cff;
	font-size: 0.875rem;
	font-family: 'Fira Code', monospace;
	margin-bottom: 1rem;
	display: block;
}
.project-link {
	color: #9d5cff;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	margin-top: auto;
}
.project-link i {
	transition: all 0.3s ease-in-out;
}
.project-link:hover i {
	transform: translateX(5px);
}
.project-image {
	width: 100%;
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	background: #1e1e1e;
}
.project-image::before {
	content: '';
	display: block;
	padding-top: 56.25%;
}
.project-image img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.tech-stack {
	display: flex;
	gap: 0.75rem;
	margin: 1.5rem 0;
	flex-wrap: wrap;
}
.tech-stack span {
	padding: 0.25rem 0.75rem;
	background: rgba(157, 92, 255, 0.1);
	border-radius: 2rem;
	font-size: 0.75rem;
	color: #9d5cff;
}

/* About Section */
.about-content {
	max-width: 800px;
}
.about-text {
	font-size: 1.25rem;
	margin-bottom: 3rem;
	color: #94a3b8;
}

.skills-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	width: 100%;
}
@media (max-width: 1024px) {
	.skills-container {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 768px) {
	.skills-container {
		grid-template-columns: 1fr;
	}
}

.skill-category h3 {
	color: #f8fafc;
	font-size: 1.25rem;
	margin-bottom: 1rem;
	position: relative;
}
.skill-category h3::after {
	content: '';
	position: absolute;
	bottom: -0.5rem;
	left: 0;
	width: 2rem;
	height: 2px;
	background: linear-gradient(135deg, #9d5cff 0%, #c17bff 100%);
}
.skill-category ul {
	list-style: none;
	padding: 0;
}
.skill-category li {
	color: #94a3b8;
	margin-bottom: 0.75rem;
	font-size: 1rem;
	display: flex;
	align-items: center;
}
.skill-category li::before {
	content: '→';
	color: #9d5cff;
	margin-right: 0.75rem;
	font-size: 0.875rem;
}

.certification-showcase {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 2rem;
}

.cert-card {
	background: #0176d3;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 1.5rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	transition: transform 0.2s ease;
}
.cert-card:hover {
	transform: translateY(-2px);
	background: #0061be;
}
.cert-card i {
	font-size: 1.5rem;
	color: #ffffff;
}
.cert-card span {
	font-size: 1rem;
	color: #ffffff;
	font-weight: 500;
}

/* Experience Timeline */
.timeline {
	position: relative;
	max-width: 800px;
	margin: 4rem auto 0;
	padding-left: 2rem;
}
.timeline::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 2px;
	background: linear-gradient(to bottom, #9d5cff 0%, #c17bff 100%);
}
.timeline-item {
	position: relative;
	margin-bottom: 3rem;
	padding-left: 2rem;
}
.timeline-item:last-child {
	margin-bottom: 0;
}
.timeline-marker {
	position: absolute;
	left: -2.25rem;
	width: 1rem;
	height: 1rem;
	border-radius: 50%;
	background: #9d5cff;
	border: 2px solid #121212;
}
.timeline-content {
	background: #1e1e1e;
	padding: 2rem;
	border-radius: 1rem;
	transition: all 0.3s ease-in-out;
}

.role-header {
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}
.role-header:hover {
	opacity: 0.8;
}
.role-header .company {
	color: #9d5cff;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}
.role-header .duration {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
	color: #888;
	margin-top: 0.25rem;
}
.role-header .duration i {
	font-size: 0.9rem;
	color: #9d5cff;
}
.role-progression {
	max-height: 1000px;
	overflow: hidden;
	transition: max-height 0.3s ease-in-out;
}
.role-progression.collapsed {
	max-height: 0;
}
.role-details {
	list-style: none;
	margin: 0;
	padding: 0;
}
.role-details li {
	color: #94a3b8;
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
	padding-left: 1rem;
	position: relative;
}
.role-details li::before {
	content: '•';
	color: #9d5cff;
	position: absolute;
	left: 0;
}
.role-duration {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
	color: #888;
	margin-top: 0.25rem;
	margin-bottom: 0.75rem;
}
.role-duration::before {
	content: '→';
	color: #9d5cff;
}
.role-duration i {
	font-size: 0.9rem;
	color: #9d5cff;
}

.position {
	font-weight: 600;
	color: #fff;
	font-size: 1.1rem;
}

/* Contact Section */
.contact-container {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}
.contact-content p {
	margin-bottom: 3rem;
}
.contact-links {
	display: flex;
	justify-content: center;
	gap: 2rem;
}
.contact-link {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: #f8fafc;
	text-decoration: none;
	padding: 1rem 2rem;
	background: #1e1e1e;
	border-radius: 0.5rem;
	transition: all 0.3s ease-in-out;
}
.contact-link:hover {
	transform: translateY(-3px);
	background: #242424;
}
.contact-link i {
	color: #9d5cff;
}

/* Footer */
.footer {
	padding: 2rem;
	border-top: 1px solid #1e1e1e;
}
.footer-content {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer-links {
	display: flex;
	gap: 2rem;
}
.footer-links a {
	color: #94a3b8;
	text-decoration: none;
	font-size: 0.875rem;
	transition: all 0.3s ease-in-out;
}
.footer-links a:hover {
	color: #f8fafc;
}

/* Media Queries */
@media (max-width: 1024px) {
	.hero-grid,
	.about-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	.project-card.featured {
		grid-template-columns: 1fr;
	}
	.floating-card {
		right: 0;
	}
}
@media (max-width: 768px) {
	section {
		padding: 3rem 2rem;
	}
	.hero {
		padding-top: 6rem;
	}
	.nav-menu {
		display: none;
	}
	.project-grid {
		grid-template-columns: 1fr;
	}
	.skills-container {
		grid-template-columns: 1fr;
	}
	.contact-links {
		flex-direction: column;
	}
	.footer-content {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}
	.timeline {
		padding-left: 1rem;
	}
	.timeline-item {
		padding-left: 1rem;
	}
	.timeline-marker {
		left: -1.25rem;
	}
	.timeline-content {
		padding: 1.5rem;
	}
	.project-image::before {
		padding-top: 75%;
	}
	.role {
		padding-left: 0.75rem;
	}
}
/* Animations */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/* Accessibility */
@media (prefers-reduced-motion: reduce) {
	* {
		animation: none !important;
		transition: none !important;
	}
}
/* Certifications Section */
.certifications .cert-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	width: 100%;
	margin: 0 auto;
}
.certifications .cert-card {
	background: #1e1e1e;
	border-radius: 1rem;
	padding: 2rem;
	display: flex;
	align-items: center;
	gap: 1.5rem;
	transition: all 0.3s ease-in-out;
	position: relative;
	overflow: hidden;
}
.certifications .cert-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(135deg, #9d5cff 0%, #c17bff 100%);
}
.certifications .cert-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.certifications .cert-icon {
	width: 3rem;
	height: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(157, 92, 255, 0.1);
	border-radius: 0.75rem;
}
.certifications .cert-icon i {
	font-size: 1.5rem;
	color: #9d5cff;
}
.certifications .cert-details {
	flex: 1;
}
.certifications .cert-details h3 {
	font-size: 1.25rem;
	margin-bottom: 0.25rem;
	color: #f8fafc;
}
.certifications .cert-details p {
	font-size: 0.875rem;
	color: #94a3b8;
	margin-bottom: 0.5rem;
}
.certifications .cert-details .cert-date {
	font-size: 0.75rem;
	color: #9d5cff;
	font-family: 'Fira Code', monospace;
}
.certifications .cert-verify {
	color: #94a3b8;
	transition: all 0.3s ease-in-out;
}
.certifications .cert-verify:hover {
	color: #9d5cff;
}
.certifications .cert-verify i {
	font-size: 1rem;
}

/* Tablet view - 2 columns */
@media (max-width: 1024px) {
	.certifications .cert-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Mobile view - 1 column */
@media (max-width: 640px) {
	.certifications .cert-grid {
		grid-template-columns: 1fr;
	}
}
