body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background-color: #0a192f;
	color: #64ffda;
}

/* Header */
.header {
	background: #0a192f;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem;
}

.navContainer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.navContainer h1 {
	color: #64ffda;
	font-size: 1.5rem;
}

.navMenu {
	list-style: none;
	display: flex;
	gap: 1rem;
}

.navMenu li a {
	color: #64ffda;
	text-decoration: none;
	font-size: 1rem;
	transition: color 0.3s ease;
}

.navMenu li a:hover {
	color: #ff6347;
}

.navMenu a.active {
    color: #3498db;
    position: relative;
    font-weight: 600;
}

.navMenu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #3498db;
    border-radius: 2px;
}

/* About */
.about {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 4rem 2rem;
	text-align: center;
}

#aboutSection {
	max-width: 800px;
}

.profileImg {
	border-radius: 50%;
	margin-bottom: 1rem;
}

#greetingTxt {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #ff6347
}

.about p {
	font-size: 1.1rem;
	line-height: 1.6;
	color: #b8c2cc;
}

.skills {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 4rem 2rem;
	background: #112240;
}

.skills h2 {
	font-size: 2rem;
	margin-bottom: 2rem;
	color: #64ffda;
}

.skill-list {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}

.skill-list span {
	background: #0a192f;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	color: #64ffda;
	font-size: 1rem;
	transition: background 0.3s ease, transform 0.3s ease;
}

.skill-list span:hover {
	background: #ff6347;
	transform: scale(1.1);
	color: #0a192f
}

/* service */
.service {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 4rem 2rem;
	background: #112240;
}

.service h2 {
	font-size: 2rem;
	margin-bottom: 2rem;
	color: #64ffda;
}

.service ul {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.service ul li {
	background: #12c08f;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.service ul li::before {
	content: '✓';
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 30px;
	height: 30px;
	background: #2563eb;
	color: #1f1111;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
}

.service ul li::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #2563eb, #1e40af);
	transform: scaleX(0);
	transition: transform 0.3s ease;
	transform-origin: left;
}

.service ul li:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service ul li:hover::after {
	transform: scaleX(1);
}

/* Contact */
.contact {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 4rem 2rem;
	background: #112240;
}

.contact h2 {
	font-size: 2rem;
	margin-bottom: 2rem;
	color: #64ffda;
}

.contact label {
	display: block;
	margin-bottom: 0.5rem;
	color: #64ffda;
	font-size: 1.1rem;
}

.contact input,
.contact textarea {
	width: 100%;
	max-width: 600px;
	padding: 0.5rem;
	margin-bottom: 1rem;
	border: 1px solid #64ffda;
	border-radius: 0.3rem;
	background-color: #0a192f;
	color: #64ffda;
	font-size: 1rem;
}

.contact input:focus,
.contact textarea:focus {
	border-color: #ff6347;
	outline: none;
}

.contact button {
	padding: 0.7rem 1.5rem;
	border: none;
	border-radius: 0.3rem;
	background-color: #ff6347;
	color: #0a192f;
	font-size: 1.1rem;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.contact button:hover {
	background-color: #e5533a;
}

/* Footer */
.footer {
	background: #0a192f;
	color: #64ffda;
	text-align: center;
	padding: 1rem 0;
	margin-top: 4rem;
}