/* Base styles */
body {
	font-family: 'Arial', sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background-color: #f0f4ff;
	scroll-beavior: smooth;
}

/* Header styles */
header {
	background-color: #fff;
	padding: 20px 0;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.logo {
	font-size: 1.5em;
	font-weight: bold;
}

.nav-links {
	list-style: none;
	display: flex;
}

.nav-links li {
	margin-left: 20px;
}

.nav-links a {
	text-decoration: none;
	color: #333;
	font-size: 1em;
	padding-bottom: 5px;
	transition: color 0.3s, border-bottom 0.3s;
}

.nav-links a:hover,
.nav-links a:focus {
	color: #007bff;
	border-bottom: 2px solid #007bff;
}

/* Main content styles */
.section {
	padding: 60px 20px;
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
	padding-top: 100px;
}

.hero {
	text-align: center;
	padding: 100px 20px;
}

.hero h1 {
	font-size: 2.5em;
	color: #333;
	line-height: 1.5;
}

.hero h1 span {
	color: #007bff;
}

.contact-btn {
	display: inline-block;
	margin-top: 20px;
	padding: 10px 20px;
	background-color: #007bff;
	color: #fff;
	text-decoration: none;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 1em;
	transition: background-color 0.3s;
}

.contact-btn:hover,
.contact-btn:focus {
	background-color: #0056b3;
}

.profile-pic {
	margin-top: 40px;
	display: inline-block;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.profile-pic img {
	width: 150px;
	height: 150px;
	object-fit: cover;
}

.social-links {
	margin-top: 20px;
}

.social-links a {
	margin: 0 10px;
	font-size: 1.5em;
	color: #000000;
	transition: color 0.3s;
}

.social-links a:hover,
.social-links a:focus {
	color: #007bff;
}

/* About section styles */
#about {
	background-color: #fff;
}

#about h2 {
	font-size: 2em;
	color: #333;
	margin-bottom: 20px;
}

#about p {
	font-size: 1em;
	color: #666;
	line-height: 1.6;
}

/* Skills section styles */
#Skills {
	background-color: #f9f9f9;
}

#Skills h2 {
	font-size: 2em;
	color: #333;
	margin-bottom: 20px;
}

#Skills ul {
	list-style: none;
	padding: 0;
}

#Skills li {
	font-size: 1em;
	color: #666;
	margin: 10px 0;
}

/* Contact section styles */
#Contact {
	background-color: #f9f9f9;
}

#Contact h2 {
	font-size: 2em;
	color: #333;
	margin-bottom: 20px;
}

#Contact p {
	font-size: 1em;
	color: #666;
	margin-bottom: 20px;
}

.contact-info {
	list-style: none;
	padding: 0;
	text-align: left;
	max-width: 600px;
	margin: 0 auto;
}

.contact-info li {
	margin-bottom: 10px;
	font-size: 1em;
	color: #333;
}

.contact-info a {
	color: #007bff;
	text-decoration: none;
}

.contact-info a:hover,
.contact-info a:focus {
	text-decoration: underline;
}

/* Footer styles */
Footer {
	text-align: center;
	padding: 20px;
	background-color: #333;
	color: #fff;
	font-size: 0.9em;
}
