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

body {
	font-family: 'Asap', sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #f8f9fa;
	padding-top: 70px; /* Space for fixed navbar */
}

.navbar {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.navbar-brand {
	font-weight: 700;
	font-size: 1.5rem;
}

.nav-link {
	color: white !important;
	margin: 0 10px;
	transition: all 0.3s ease;
}

.nav-link:hover {
	color: #ddd !important;
	transform: translateY(-2px);
}

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

header {
	text-align: center;
	padding: 60px 20px;
	background: linear-gradient(135deg, #667eea 10%, #764ba2 90%);
	color: white;
	margin-bottom: 40px;
}

h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.subtitle {
	font-size: 1.2rem;
	font-weight: 400;
	opacity: 0.9;
}

.section {
	background: white;
	margin-bottom: 30px;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

h2 {
	font-size: 2rem;
	color: #2c3e50;
	margin-bottom: 20px;
	border-bottom: 3px solid #667eea;
	padding-bottom: 10px;
}

.education-item, .research-item, .publication-item {
	margin-bottom: 25px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}

.education-item:last-child, .research-item:last-child, .publication-item:last-child {
	border-bottom: none;
}

.degree {
	font-weight: 700;
	font-size: 1.3rem;
	color: #34495e;
}

.institution {
	font-weight: 600;
	color: #667eea;
}

.year {
	color: #7f8c8d;
	font-style: italic;
}

.coursework-list {
	margin-top: 10px;
}

.coursework-list ul {
	list-style-type: none;
	margin-top: 10px;
}

.coursework-list li {
	display: inline-block;
	background: #ecf0f1;
	padding: 5px 12px;
	margin: 5px 8px 5px 0;
	border-radius: 20px;
	font-size: 0.9rem;
}

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

.skill-category {
	background: #f8f9fa;
	padding: 15px;
	border-radius: 8px;
	border-left: 4px solid #667eea;
}

.skill-category h4 {
	color: #2c3e50;
	margin-bottom: 10px;
}

.contact-info {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	margin-top: 20px;
}

.contact-item {
	text-align: center;
	margin: 10px;
}

.section-anchor {
	position: relative;
	top: -70px; /* Offset for fixed navbar height */
}

@media (max-width: 768px) {
	h1 {
		font-size: 2.2rem;
	}

	h2 {
		font-size: 1.6rem;
	}

	.section {
		padding: 20px;
	}

	.nav-link {
		margin: 0 5px;
		font-size: 0.9rem;
	}
}