* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
	--primary: #2c3e50;
	--secondary: #3498db;
	--accent: #e74c3c;
	--light: #ecf0f1;
	--dark: #2c3e50;
	--shadow: 0 5px 15px rgba(0,0,0,0.1);
}

body {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: var(--light);
	line-height: 1.6;
	min-height: 100vh;
}

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

/* Header Styles */
header {
	background: rgba(44, 62, 80, 0.95);
	backdrop-filter: blur(10px);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	box-shadow: var(--shadow);
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.logo {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--light);
	text-decoration: none;
}

.nav-links {
	display: flex;
	gap: 2rem;
}

.nav-links a {
	color: var(--light);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

.nav-links a:hover {
	color: var(--secondary);
}

.nav-links a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -5px;
	left: 0;
	background: var(--secondary);
	transition: width 0.3s ease;
}

.nav-links a:hover::after {
	width: 100%;
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	text-align: center;
	padding: 100px 0 50px;
}

.hero-content h1 {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	animation: fadeInUp 1s ease;
}

.hero-content p {
	font-size: 1.3rem;
	margin-bottom: 2rem;
	opacity: 0.9;
	animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
	display: inline-block;
	padding: 12px 30px;
	background: var(--secondary);
	color: white;
	text-decoration: none;
	border-radius: 30px;
	font-weight: 600;
	transition: all 0.3s ease;
	animation: fadeInUp 1s ease 0.4s both;
}

.cta-button:hover {
	background: #2980b9;
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

/* Sections */
section {
	padding: 80px 0;
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	position: relative;
}

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

/* About Section */
.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

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

.skill-item {
	background: rgba(255, 255, 255, 0.1);
	padding: 1.5rem;
	border-radius: 10px;
	text-align: center;
	backdrop-filter: blur(10px);
	transition: transform 0.3s ease;
}

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

/* Projects Section */
.projects-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.project-card {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	overflow: hidden;
	backdrop-filter: blur(10px);
	transition: transform 0.3s ease;
}

.project-card:hover {
	transform: translateY(-10px);
}

.project-content {
	padding: 1.5rem;
}

/* Contact Section */
.contact-form {
	max-width: 600px;
	margin: 0 auto;
}

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

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 5px;
	color: var(--light);
	font-size: 1rem;
}

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

.submit-btn {
	width: 100%;
	padding: 12px;
	background: var(--secondary);
	color: white;
	border: none;
	border-radius: 5px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s ease;
}

.submit-btn:hover {
	background: #2980b9;
}

/* Footer */
footer {
	background: rgba(44, 62, 80, 0.95);
	padding: 2rem 0;
	text-align: center;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	margin-bottom: 1rem;
}

.social-links a {
	color: var(--light);
	font-size: 1.5rem;
	transition: color 0.3s ease;
}

.social-links a:hover {
	color: var(--secondary);
}

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

/* Responsive Design */
@media (max-width: 768px) {
	.nav-links {
		display: none;
	}

	.hero-content h1 {
		font-size: 2.5rem;
	}

	.about-content {
		grid-template-columns: 1fr;
	}

	.projects-grid {
		grid-template-columns: 1fr;
	}
}