body {
  margin: 0;
  padding: 60px 0 0 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;             /* fixed height */
  box-sizing: border-box;   /* include padding inside height */
  padding: 0 2rem;          /* horizontal padding only */
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}


nav .logo {
  font-weight: bold;
  width: 60px;
  height: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

nav ul li {
  cursor: pointer;
  font-weight: 600;
  color: #333;
}

nav ul li a {
  text-decoration: none;
  color: inherit;
}

nav ul li a:hover {
  text-decoration: underline;
  color: #334;
}

.current {
  text-decoration: underline;
  color: #333;
}

.about-card {
  max-width: 600px;       /* restrict max width to shrink box */
  padding: 1rem 1.5rem;   /* smaller padding */
  margin: 1.5rem auto;    /* center horizontally, less margin */
  border-left: 4px solid #007BFF;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.12);
  background: #fff;
} 

.about-content {
  padding: 1.5rem 2rem;          /* reduced padding */
  border-radius: 6px;
}

.about-content h1 {
  font-size: 1.8rem;             /* smaller heading */
  margin-bottom: 1rem;
  color: #003366;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
}

.about-content p {
  font-size: 1rem;               /* smaller paragraph text */
  line-height: 1.6;
  max-width: 500px;              /* narrower width */
  color: #333;
}



