body {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background: #333;
}
img {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

header {
  background:#333;
  color: #fff;
  text-align: center;
  padding: 2em 0;
}
nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
nav ul {
  list-style: none;
  background:none;
  display: flex;
  justify-content: center;
  padding: 0;
}
nav ul li:first-child {
  font-weight: bold;
  font-size: 20px;
  margin-right: auto;
  color: whitesmoke;
}
nav ul li {
  margin: 0 10px;
}

nav ul li a {
  color:white;
  text-decoration: none;
}
ul {
  list-style: none;
  padding: 0;
}

ul li {
  padding: 5px 0;
}
#resume {
  text-align: center;
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.resume-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 24px;
  font-size: 16px;
  color: white;
  background-color: #0073b1; /* LinkedIn Blue */
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.resume-btn:hover {
  background-color: #005a8d;
}

.skills {
  background: #fff;
  padding: 20px;
  margin: 20px;
  border-radius: 0px;
}

#skills h2 {
  margin-bottom: 15px;
  color: #333;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill {
  background: #007acc;
  color: #fff;
  padding: 8px 12px;
  border-radius: 100px;
  font-size: 14px;
  border-width: 5px;
  border-color: red ;
}
table tr th{
        background-color: grey;
        border:2px solid;
    }
    table tr td{
        border:2px solid;
    }

      table tr th {
        background-color: cadetblue;
        border:2px solid;

    }

    table tr td{
        border: 2px solid;
    }


section {
  padding: 2em;
  background: white;
  margin: 1em;
}

form input, form textarea {
  display: block;
  margin-bottom: 1em;
  padding: 10px;
  width: 100%;
  max-width: 400px;
}
.linkedin-link {
  text-decoration: none;
  color:red;
  font-weight: bold;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
}

.linkedin-icon {
  width: 24px;
  height: 24px;
   gap: 15px;
  padding: 10px;
  margin-bottom: auto;
  margin-right: 20px;
  margin-left:0px;
  transition: transform 0.3s;
}

.linkedin-link:hover .linkedin-icon {
  transform: scale(1.2);
}

.github-icon {
  width: 26px;
  height: 26px;
  gap: 15px;
  padding: 10px;
  margin-bottom: auto;
  margin-left: 20px;
  margin-right:0px;
  transition: transform 0.3s;
  margin-right: 50px;
  transition: transform 0.3s;
}

.github-link:hover .github-icon {
  transform: scale(1.2);
}
.twitter-icon {
  width: 26px;
  height: 26px;
  gap: 15px;
  padding: 10px;
  margin-bottom: auto;
  margin-left: 20px;
  margin-right:300px;
  transition: transform 0.3s;
  margin-right: 50px;
  transition: transform 0.3s;
}

.twitter-link:hover .twitter-icon {
  transform: scale(1.2);
}



footer {
  text-align: center;
  padding: 1em;
  background: #222;
  color: #fff;
}

/* Flex container with reversed row */
.header-content {
  display: flex;
  flex-direction: row-reverse; /* Image on the right */
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  padding: 100px;
}

/* Profile picture styling */
.profile-pic {
  width: 300px;
  height: 300px;
  border-radius: 100%;
  border: 4px solid #007acc;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 15px;
  padding: 10px;
  margin: 0;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.profile-pic {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #007acc;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}