body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	line-height: 1.6;
}

.container {
	margin: 0 auto;
	padding: 10px 200px 10px 200px; /* Added left padding for margin */
	box-sizing: border-box;
	position: relative; /* Needed for absolute positioning of fixed image */
}

header, footer {
	background-color: #007bff; /* Blue background */
	color: white;
	padding: 10px 0;
	text-align: center;
}

.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #007bff; /* Ensures background covers content behind it */
	z-index: 999; /* Keeps it on top of other elements */
	padding: 10px 0;
	text-align: center;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional subtle shadow */
}

.navbar ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.navbar li {
	display: inline;
	margin: 0 15px;
}

.navbar a {
	color: white;
	text-decoration: none;
}

.main-section {
	margin-top: 20px;
}

.profile-section {
	text-align: center;
	padding: 10 10;
	background-color: #f0f0f0;
}

#profile.profile-section {
	margin-top: 50px;
}

.profile-content h1 {
	margin-bottom: 10px;
}

#desc {
  margin-bottom: 30px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

#desc ul,
#documentation ul,
#contact ul {
  text-align: left;
  display: inline-block;
  margin: 0 auto;
  padding-left: 20px; /* Adds indentation for bullets */
}

#documentation, #contact {
	margin-bottom: 30px;
}

.button-container {
	display: flex;
	justify-content: center;
	gap: 20px;
}

button {
	padding: 10px 20px;
	background-color: #e0e0e0;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 10px;
}

button img {
	height: 20px;
}

footer p {
	margin: 5px 0;
}

.social-media-linear {
	margin-top: 10px;
}

.social-logo-linear {
	height: 30px;
	margin: 0 10px;
}

.fixed-image {
	position: fixed; /* Fixed positioning */
	left: 20px; /* Position from left */
	top: 80px; /* Position 100px from the top */
	max-width: 150px; /* Adjust size as needed */
	height: auto; /* Allow image to scale proportionally */
}

.fixed-image img {
	max-width: 100%;
	height: auto;
}

#profile.profile-section {
	text-align: center;
	padding: 20px 20px;
	background: linear-gradient(
		to right,
		#ffffff 0%,
		#5aa8fb 30%,
		#2f7cd9 50%,
		#5aa8fb 70%,
		#ffffff 100%
	);
	color: #ffffff;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#profile.profile-section h1,
#profile.profile-section h2 {
	font-size: 1.8rem;
	margin-top: 0px;
	font-weight: 400;
	color: #e0f7ff;
}

.intro-text {
	font-size: 1.2rem;
	margin: 15px auto;
	max-width: 700px;
	line-height: 1.6;
	opacity: 0;
	animation: fadeIn 1s ease-in-out forwards;
}

.intro-text:nth-of-type(1) { animation-delay: 0.3s; }
.intro-text:nth-of-type(2) { animation-delay: 0.6s; }
.intro-text:nth-of-type(3) { animation-delay: 0.9s; }
.intro-text:nth-of-type(4) { animation-delay: 1.2s; }

strong {
	color: #1a4f85; /* Professional deep blue */
	font-weight: 600;
	text-shadow: none;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.button-container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
	margin-top: 20px;
}

.spec-button {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	font-size: 14px;
	cursor: pointer;
	border: 1px solid #ccc;
	background-color: #f5f5f5;
	border-radius: 6px;
	transition: background-color 0.3s;
}

.spec-button:hover {
	background-color: #e0e0e0;
}

.specs-icon {
	width: 20px;
	height: 20px;
}