 /* Reset and Base Styles */
 *, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	user-select: none;
	-webkit-user-select: none;
}

:root {
	--dark: #121212;
	--dark-accent: #1e1e1e;
	--light: #ffffff;
	--light-gray: #f5f5f5;
	--purple-primary: #8a2be2;
	--purple-light: #9d4edd;
	--purple-dark: #6a0dad;
	--text-primary: #f8f8f8;
	--text-secondary: #b0b0b0;
}

body {
	font-family: 'Poppins', sans-serif;
	background-color: var(--dark);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

/* Utility Classes */
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.section {
	padding: 100px 0;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 50px;
	text-align: center;
	position: relative;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, var(--purple-dark), var(--purple-light));
	border-radius: 2px;
}

.btn {
	display: inline-block;
	padding: 12px 30px;
	background: linear-gradient(135deg, var(--purple-primary), var(--purple-light));
	color: var(--light);
	border: none;
	border-radius: 30px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(138, 43, 226, 0.4);
}

/* Header Styles */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 20px 0;
	background-color: rgba(18, 18, 18, 0.9);
	backdrop-filter: blur(10px);
	z-index: 1000;
	transition: all 0.3s ease;
}

header.scrolled {
	padding: 15px 0;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--light);
	text-decoration: none;
	position: relative;
}

.logo span {
	color: var(--purple-primary);
}

.nav-links {
	display: flex;
	list-style: none;
}

.nav-links li {
	margin-left: 30px;
}

.nav-links a {
	color: var(--text-primary);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--purple-primary);
	transition: width 0.3s ease;
}

.nav-links a:hover {
	color: var(--purple-light);
}

.nav-links a:hover::after {
	width: 100%;
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	color: var(--light);
	font-size: 1.5rem;
	cursor: pointer;
}

/* Hero Section */
.hero {
	height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.15), transparent 40%),
				radial-gradient(circle at 20% 80%, rgba(138, 43, 226, 0.1), transparent 30%);
	z-index: -1;
}

.hero-content {
	max-width: 600px;
}

.hero-greeting {
	font-size: 1.2rem;
	color: var(--purple-light);
	margin-bottom: 10px;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.8s forwards 0.2s;
}

.hero-name {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 15px;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.8s forwards 0.4s;
}

.hero-title {
	font-size: 1.8rem;
	color: var(--text-secondary);
	margin-bottom: 25px;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.8s forwards 0.6s;
}

.hero-description {
	font-size: 1.1rem;
	color: var(--text-secondary);
	margin-bottom: 40px;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.8s forwards 0.8s;
}

.hero-cta {
	display: flex;
	gap: 20px;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.8s forwards 1s;
}

.hero-cta .btn-secondary {
	background: transparent;
	border: 2px solid var(--purple-primary);
	color: var(--purple-light);
}

.hero-cta .btn-secondary:hover {
	background: rgba(138, 43, 226, 0.1);
}

.hero-image {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 45%;
	max-width: 600px;
	opacity: 0;
	transform: translateX(50px);
	animation: fadeInRight 1s forwards 1.2s;
}

/* About Section */
.about {
	background-color: var(--dark-accent);
	position: relative;
}

.about::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 10% 30%, rgba(138, 43, 226, 0.08), transparent 30%);
	z-index: 0;
}

.about-content {
	display: flex;
	align-items: center;
	gap: 50px;
	position: relative;
	z-index: 1;
}

.about-image {
	flex: 1;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	position: relative;
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.5s ease;
}

.about-image:hover img {
	transform: scale(1.05);
}

.about-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), transparent);
	z-index: 1;
}

.about-text {
	flex: 1;
}

.about-text h3 {
	font-size: 2rem;
	margin-bottom: 20px;
	color: var(--purple-light);
}

.about-text p {
	margin-bottom: 20px;
	color: var(--text-secondary);
}

.about-stats {
	display: flex;
	gap: 30px;
	margin-top: 30px;
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--purple-primary);
	margin-bottom: 5px;
}

.stat-label {
	font-size: 0.9rem;
	color: var(--text-secondary);
}

/* Skills Section */
.skills {
	position: relative;
}

.skills::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 90% 50%, rgba(138, 43, 226, 0.08), transparent 30%);
	z-index: 0;
}

.skills-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 30px;
	position: relative;
	z-index: 1;
}

.skill-card {
	background-color: var(--dark-accent);
	border-radius: 15px;
	padding: 30px;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
}

.skill-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, var(--purple-dark), var(--purple-light));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.skill-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.skill-card:hover::before {
	transform: scaleX(1);
}

.skill-icon {
	font-size: 3rem;
	color: var(--purple-primary);
	margin-bottom: 20px;
}

.skill-title {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 15px;
}

.skill-description {
	color: var(--text-secondary);
	font-size: 0.9rem;
}

/* Projects Section */
.projects {
	background-color: var(--dark-accent);
	position: relative;
}

.projects::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 20% 70%, rgba(138, 43, 226, 0.08), transparent 30%);
	z-index: 0;
}

.projects-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 30px;
	position: relative;
	z-index: 1;
}

.project-card {
	background-color: var(--dark);
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.project-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-image {
	width: 100%;
	height: 200px;
	background-color: var(--dark-accent);
	position: relative;
	overflow: hidden;
}

.project-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
	transform: scale(1.1);
}

.project-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	display: flex;
	align-items: flex-end;
	padding: 20px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
	opacity: 1;
}

.project-links {
	display: flex;
	gap: 15px;
}

.project-link {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--purple-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--light);
	text-decoration: none;
	transition: all 0.3s ease;
}

.project-link:hover {
	background-color: var(--purple-light);
	transform: translateY(-3px);
}

.project-content {
	padding: 25px;
}

.project-title {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 10px;
}

.project-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 15px;
}

.project-tag {
	padding: 5px 12px;
	background-color: rgba(138, 43, 226, 0.1);
	color: var(--purple-light);
	border-radius: 20px;
	font-size: 0.8rem;
}

.project-description {
	color: var(--text-secondary);
	font-size: 0.9rem;
}

/* Social Media Section */
.social-media {
	position: relative;
}

.social-media::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 80% 30%, rgba(138, 43, 226, 0.08), transparent 30%);
	z-index: 0;
}

.social-intro {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 50px;
	position: relative;
	z-index: 1;
}

.social-intro p {
	color: var(--text-secondary);
	font-size: 1.1rem;
	margin-bottom: 30px;
}

.social-grid {
	display: flex;
	justify-content: center;
	gap: 40px;
	position: relative;
	z-index: 1;
}

.social-item {
	position: relative;
	width: 120px;
	height: 120px;
	perspective: 1000px;
}

.social-card {
	width: 100%;
	height: 100%;
	position: relative;
	transform-style: preserve-3d;
	transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	cursor: pointer;
}

.social-item:hover .social-card {
	transform: rotateY(180deg);
}

.social-front, .social-back {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.social-front {
	background: linear-gradient(135deg, var(--dark-accent), var(--dark));
	border: 2px solid var(--purple-primary);
}

.social-back {
	background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
	transform: rotateY(180deg);
	padding: 15px;
	text-align: center;
}

.social-icon {
	font-size: 3rem;
	color: var(--purple-primary);
	transition: all 0.3s ease;
}

.social-item:hover .social-icon {
	color: var(--purple-light);
}

.social-name {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 5px;
}

.social-username {
	font-size: 0.9rem;
	color: var(--light);
}

/* Contact Section */
.contact {
	background-color: var(--dark-accent);
	position: relative;
}

.contact::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 30% 50%, rgba(138, 43, 226, 0.08), transparent 30%);
	z-index: 0;
}

.contact-container {
	display: flex;
	gap: 50px;
	position: relative;
	z-index: 1;
}

.contact-info {
	flex: 1;
}

.contact-heading {
	font-size: 2rem;
	margin-bottom: 20px;
	color: var(--purple-light);
}

.contact-text {
	color: var(--text-secondary);
	margin-bottom: 30px;
}

.contact-method {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.contact-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: rgba(138, 43, 226, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	color: var(--purple-primary);
	font-size: 1.2rem;
}

.contact-details h4 {
	font-size: 1.1rem;
	margin-bottom: 5px;
}

.contact-details p {
	color: var(--text-secondary);
	font-size: 0.9rem;
}

.contact-form {
	flex: 1;
	background-color: var(--dark);
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-group {
	margin-bottom: 20px;
}

.form-label {
	display: block;
	margin-bottom: 8px;
	font-size: 0.9rem;
	color: var(--text-secondary);
}

.form-control {
	width: 100%;
	padding: 12px 15px;
	background-color: var(--dark-accent);
	border: 1px solid rgba(138, 43, 226, 0.2);
	border-radius: 8px;
	color: var(--text-primary);
	font-family: 'Poppins', sans-serif;
	transition: all 0.3s ease;
}

.form-control:focus {
	outline: none;
	border-color: var(--purple-primary);
	box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.1);
}

textarea.form-control {
	min-height: 120px;
	resize: vertical;
}

/* Footer */
footer {
	background-color: var(--dark);
	padding: 30px 0;
	text-align: center;
	position: relative;
}

.footer-content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.footer-logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--light);
	margin-bottom: 15px;
}

.footer-logo span {
	color: var(--purple-primary);
}

.footer-links {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

.footer-link {
	color: var(--text-secondary);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-link:hover {
	color: var(--purple-light);
}

.footer-social {
	display: flex;
	gap: 15px;
	margin-bottom: 20px;
}

.footer-social-link {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: rgba(138, 43, 226, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--purple-primary);
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer-social-link:hover {
	background-color: var(--purple-primary);
	color: var(--light);
	transform: translateY(-3px);
}

.footer-copyright {
	color: var(--text-secondary);
	font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Responsive Styles */
@media (max-width: 992px) {
	.hero-name {
		font-size: 3rem;
	}

	.hero-title {
		font-size: 1.5rem;
	}

	.hero-image {
		width: 40%;
	}

	.about-content {
		flex-direction: column;
	}

	.about-image, .about-text {
		flex: none;
		width: 100%;
	}

	.contact-container {
		flex-direction: column;
	}
}

@media (max-width: 768px) {
	.section {
		padding: 80px 0;
	}

	.section-title {
		font-size: 2rem;
	}

	.nav-links {
		display: none;
	}

	.mobile-menu-btn {
		display: block;
	}

	.hero-name {
		font-size: 2.5rem;
	}

	.hero-title {
		font-size: 1.3rem;
	}

	.hero-image {
		display: none;
	}

	.projects-container {
		grid-template-columns: 1fr;
	}

	.social-grid {
		flex-wrap: wrap;
	}
}

/* Protection Styles */
img {
	pointer-events: none;
	-webkit-user-drag: none;
}