body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #121212;
  color: #ffffff;
  scroll-behavior: smooth; /* Enables smooth scrolling */
}

/* Home Section */
#home {
  text-align: center;
  padding: 150px 20px; /* Increased padding for the Home section */
  background-color: #1e1e1e;
  min-height: 100vh;
}

#home h1 {
  font-size: 4em;
  color: #76c7c0;
}

#home p {
  font-size: 1.5em;
  color: #b0bec5;
}

/* Floating Logo */
.floating-logo {
  position: fixed;
  top: 20px; /* Keep it at the top */
  left: calc(50% + 100px); /* Centering adjustment, considering the sidebar width (200px / 2) */
  transform: translateX(-50%); /* Center it properly */
  width: 150px; /* Increased size */
  height: auto;
  z-index: 100; /* Ensure it stays above other elements */
}

/* Section styling */
section {
  padding: 100px 20px; /* Increased padding for more spacing */
  text-align: center;
  min-height: 100vh; /* Full viewport height for each section */
}

#about, #services {
  background-color: #1e1e1e;
  margin: 40px 0;
}

h2 {
  font-size: 2em;
  color: #76c7c0;
}

h3 {
  font-size: 1.5em;
  color: #76c7c0;
}

ul {
  list-style-type: none;
  padding: 0;
}

ul li {
  font-size: 1.2em;
  margin: 10px 0;
}

table {
  border-collapse: collapse;
  margin-left: auto;
  margin-right: auto;
}

td, th {
  border: 1px solid #76c7c0;
  text-align: left;
  padding: 8px;
}

#contact a {
  color: #76c7c0;
  text-decoration: none;
}

#contact a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 10px;
  background-color: #1e1e1e;
  color: #b0bec5;
}

/* Sidebar Styling */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 200px;
  height: 100%;
  background-color: #1e1e1e;
  padding-top: 20px;
  z-index: 99; /* Ensure it's below the floating logo */
  overflow-y: auto; /* Allows sidebar to scroll if content overflows */
}

.sidebar ul {
  list-style-type: none;
  padding: 0;
}

.sidebar ul li {
  margin: 20px 0;
  text-align: center;
}

.sidebar ul li a {
  color: #76c7c0;
  text-decoration: none;
  font-size: 1.2em;
  display: block;
}

.sidebar ul li a:hover {
  color: #b0bec5;
}

/* Adjust body margin to accommodate sidebar */
body {
  margin-left: 200px;
}
