/* Basic Global Styles */
body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
  color: #222222;
}

/* Navbar Styles */
.navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 10px 20px;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.4rem;
  color: #000000 !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  font-size: 1.1rem;
  color: #555555;
  margin-right: 15px;
  text-decoration: none;
}

/* Active Page Link */
.navbar-nav .nav-link.active {
  color: #000000; /* <- THIS keeps the active link black and visible */
  font-weight: 700;
  border-bottom: 2px solid #000000;
}

/* Hover State */
.navbar-nav .nav-link:hover {
  color: #000000; /* Make hover also strong black */
  text-decoration: none;
  border-bottom: 2px solid black;
}

/* Sidebar (Table of Contents) Styles */
#TOC {
  font-size: 0.9rem;
}

#TOC a {
  color: #555555;
}

#TOC a:hover {
  color: #000000;
  text-decoration: underline;
}

/* Heading Styles */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  color: #111111;
}

/* Links */
a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Buttons */
.btn-primary {
  background-color: #000000;
  border-color: #000000;
}

.btn-primary:hover {
  background-color: #333333;
  border-color: #333333;
}

/* Section Spacing */
section {
  margin-bottom: 50px;
}

/* Footer Styles */
footer {
  font-size: 0.8rem;
  text-align: center;
  padding: 20px;
  color: #777777;
}

/* Image Styling */
img {
  border-radius: 10px;
  max-width: 100%;
  height: auto;
}

/* Resume Section */
.resume-section {
  background-color: #ffffff;
  padding:
