body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #fdfdfd;
  color: #222;
}
header {
  background-color: #222;
  color: white;
  padding: 2rem;
  text-align: center;
}
section {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
}
h2 {
  color: #444;
  border-bottom: 2px solid #ccc;
  padding-bottom: 0.5rem;
}
footer {
  text-align: center;
  background-color: #f1f1f1;
  padding: 1rem;
  margin-top: 2rem;
}
a {
  color: #007acc;
  text-decoration: none;
}

nav {
  background-color: #333;
  padding: 0.5rem 0;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline;
  margin: 0 1rem;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  text-decoration: underline;
}
.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #333;
  margin: 1rem auto;
  display: block;
}

.profile-header {
    gap: 1rem;
  margin-bottom: 2rem;
  text-align: center;
}

.profile-pic-small {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #333;
}

.profile-text h1 {
  margin: 0;
  font-size: 1.5rem;
  text-align: center;
}

.profile-text p {
  margin: 0;
  font-size: 1rem;
  color: #555;
}
.social-links {
  margin-top: 0.75rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-links a {
  background-color: #f1f1f1;
  color: #333;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.1);
  background-color: #0077b5; /* Default hover color */
  color: white;
}

.social-links a:nth-child(1):hover {
  background-color: #0077b5; /* LinkedIn */
}

.social-links a:nth-child(2):hover {
  background-color: #333;    /* GitHub */
}

.social-links a:nth-child(3):hover {
  background-color: #dd4b39; /* Email */
}
