body {
	margin: 0;
	font-family: "Roboto", sans-serif;
	background: #121212;
	color: #e0e0e0;
	scroll-behavior: smooth;
	overflow-x: hidden;
	cursor: url("animated-cursor.gif"), auto;
}

a {
	text-decoration: none;
	color: #1e90ff;
}

/* Navbar */
nav {
	position: fixed;
	top: 0;
	width: 100%;
	background-color: #1c1c1c;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 30px;
	z-index: 999;
}

nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 30px;
}

nav ul li a {
	font-weight: bold;
	font-size: 1.1rem;
	transition: color 0.3s ease;
	color: #e0e0e0;
}

nav ul li a:hover {
	color: #1e90ff;
}

.search-container {
	display: flex;
	align-items: center;
}

#searchBar {
	padding: 5px 10px;
	border: none;
	border-radius: 5px;
	outline: none;
	background: #2a2a2a;
	color: #e0e0e0;
}

/* Header */
.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 120px 50px;
	background: #121212;
}

.header .greeting {
	flex: 1;
	text-align: left;
	animation: fadeIn 2s ease-in-out;
}

.header .greeting h1 {
	font-size: 3.5rem;
	margin: 0;
}

.header .greeting p {
	font-size: 1.5rem;
	margin-top: 10px;
}

.header .profile {
	flex: 1;
	text-align: right;
}

.header .profile img {
	width: 23rem;
	height: 23rem;
	border-radius: 20px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header .profile img:hover {
	transform: scale(1.05);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
}

/* About Me Section */
.about {
	text-align: center;
	padding: 50px 20px;
	background: #121212;
}

.about h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
	color: #e0e0e0;
}

.about p {
	font-size: 1.2rem;
	max-width: 800px;
	margin: auto;
	line-height: 1.6;
}

/* Projects Section */
.projects {
	padding: 50px 20px;
	text-align: center;
	background: #121212;
}

.projects h2 {
	font-size: 2.5rem;
	margin-bottom: 40px;
	color: #e0e0e0;
}

.project-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.project-item {
	background: #1c1c1c;
	border-radius: 15px;
	padding: 20px;
	width: 300px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-align: left;
}

.project-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.project-item h3 {
	color: #e0e0e0;
	font-size: 1.4rem;
}

.project-item p {
	font-size: 1rem;
	color: #bbb;
}

.project-item a {
	color: #1e90ff;
	font-weight: bold;
}

/* Education Section */
.education {
	padding: 50px 20px;
	text-align: center;
	background: #121212;
}

.education h2 {
	font-size: 2.5rem;
	margin-bottom: 40px;
	color: #e0e0e0;
}

.education-timeline {
	max-width: 800px;
	margin: auto;
}

.education-item {
	background: #1c1c1c;
	margin-bottom: 20px;
	padding: 20px;
	border-radius: 8px;
	text-align: left;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.education-item h3 {
	font-size: 1.4rem;
	color: #e0e0e0;
}

.education-item p {
	font-size: 1rem;
	color: #bbb;
}

/* Tech Stack Section */
.tech-stack {
	text-align: center;
	padding: 50px 20px;
	background: #121212;
}

.tech-stack h2 {
	font-size: 2.5rem;
	margin-bottom: 40px;
	color: #e0e0e0;
}

.tech-stack-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.tech-stack-item {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 15px;
	padding: 20px;
	font-size: 1rem;
	color: #e0e0e0;
	width: 120px;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-stack-item i {
	font-size: 2rem;
	margin-bottom: 10px;
}

.tech-stack-item span {
	display: block;
}

.tech-stack-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* Contact Section */
.contact {
	padding: 50px 20px;
	text-align: center;
	background: #121212;
}

.contact h2 {
	font-size: 2.5rem;
	margin-bottom: 40px;
	color: #e0e0e0;
}

.contact-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.contact-card {
	background: #1c1c1c;
	border-radius: 15px;
	padding: 20px;
	width: 300px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.contact-card h3 {
	color: #e0e0e0;
	font-size: 1.4rem;
}

.contact-card p {
	font-size: 1rem;
	color: #bbb;
	margin-bottom: 10px;
}

.contact-card a {
	display: block;
	color: #1e90ff;
	font-weight: bold;
	margin-top: 10px;
	text-decoration: none;
	font-size: 1.1rem;
	transition: color 0.3s ease;
}

.contact-card a:hover {
	color: #e0e0e0;
}

.contact-card img {
	width: 50px;
	height: 50px;
	margin-top: 15px;
}

/* Footer */
.footer {
	background: #1c1c1c;
	padding: 20px 0;
	text-align: center;
}

.footer-card {
	margin: 0 auto;
	max-width: 800px;
	padding: 20px;
	background: #1c1c1c;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.footer-card p {
	margin: 0;
	color: #bbb;
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Media Queries */
@media (max-width: 768px) {
	.header {
		flex-direction: column;
		padding: 80px 20px;
	}
	.header .profile {
		margin-top: 20px;
	}
	.project-grid,
	.contact-grid {
		flex-direction: column;
		align-items: center;
	}
	.project-item,
	.contact-card {
		width: 90%;
		margin-bottom: 20px;
	}
}

#tagline:hover {
	color: azure;
}

html,
body {
	margin: 0;
	padding: 0;
	height: 100%;
}
/* Basic style for the button before activation */
#danger {
	/* position: absolute; */
	/* top: 20px; */
	left: 20px;
	padding: 7.5px 15px;
	font-size: 16px;
	z-index: 1000;
	background-color: rgb(244, 255, 146);
	border-radius: 10px;
}
/* Smooth transition for background flicker effect */
body {
	transition: background-color 0.05s;
}
.box {
	position: absolute;
	width: 30px;
	height: 30px;
	background-color: #0f0;
	border-radius: 50%;
	box-shadow: 0 0 20px 10px #0f0;
	mix-blend-mode: difference;
}
