body {
  display: block;
  margin: 0px;
  margin-top: 67px;
}
/* Header Styling */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#headerImage{
  width: 10%;
  padding-left: 50px;
}
.navbar {
  display: flex;
  gap: 20px;
}

.navMenu {
  display: flex;
  gap: 45px;
  padding-right: 50px;
}

.nav-link {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  transition: 0.7s ease;
}

.nav-item {
  list-style: none;
}

.nav-item :hover {
  color: #6182d7; 
}

.navMenu.active {
  display: block; /* Show the menu when active */
}
/*End of Header Styling*/


/* Footer Styling */
footer {
  width: 100%;
  position: sticky;
  bottom: 0;
  background-color: #000000;
  display: flex;
  align-items: center;
  flex-direction: column;
}
  #footerImage{
    width:  15%;
  }
  p{
    color:white;
  }
  a{
    color:white;}
.social-links{
  width: 50px;
  height: 50px;
}
/* End of Footer Styling */

/*About Page Styling*/
#about-info{
    max-width: 100%;
    background: #ffffff;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding-bottom: 50px;
    padding-top: 50px;
}
  #photo-box{
      width: 35%;
      float: left;
      align-content: center;
      justify-content: center;display: flex;
      align-items: center;
      flex-direction: column;
  }
  #text-box{
      width: 65%;
      float: right;
      text-align: justify;
      margin: auto;
      
  }
  p{
      padding-left: 50px;
      padding-right: 50px;
      color: #000000;
      font-family: Arial, Helvetica, sans-serif;
  }
  h1{
    text-align:center ;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: #6182d7; 
    padding: 25px; 
  }


/* Resume Section */
#resume {display: flex;
    flex-wrap: wrap;
    flex-direction: row;padding-top: 65px;
  }
  #left-column{
    width: 38%;
    float: left;display: flex;
    flex-direction: row;
    flex-direction: column;
    align-items: center;
    border-style: solid;
    border-width: 1px;
    border-color: white black white white; /* top, black right, bottom left */
  }
  #left-column img{
    box-shadow: 5px 5px 5px #55555590;
    margin-top: 20px;
  }
  #resume-preview{
    width: 60%;
    margin-left:auto;
    margin-right:auto;
  }
  #resume-preview img{
    display:block ;
    margin-left:auto;
    margin-right:auto;
  }
  #right-column{
    width: 24%;
    float: right;
    display: flex;
    flex-direction: row;
    flex-direction: column;
    align-items: center;
  }
  h2{
    
    text-align:center ;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: #6182d7; 
    padding: 15px; 
  }
  
#resume-download {
  margin-top: 10px;
}

.download-btn {
  font-family: "Gill Sans", sans-serif;
  display: inline-block;
  padding: 1px 1px;
  background-color: #457ab1;
  color: white;
  text-decoration: none;
  font-size: 15px;
  border-radius: 5px;
}

.download-btn:hover {
  background-color: #0056b3;
}
/*End of Resume Styling */

table {
    width: 100%;
    border: 1px solid;
  }
  
/* Filter Section */
#filter {
    margin-top: 70px;
    margin-bottom: 20px;
    text-align: center;
  }
  
  #filter label {font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    margin-right: 5px;
  }
  
  #filter select {
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    padding: 10px;
  }
  
  /* Table Styling */
  #projects-table {
    width: 100%;
    border-collapse: collapse;
  }
  thead th:nth-child(1) {
    width: 50%;
  }
  
  thead th:nth-child(2) {
    width: 15%;
  }
  
  thead th:nth-child(3) {
    width: 15%;
  }
  
  thead th:nth-child(4) {
    width: 15%;
  }
  #projects-table th, #projects-table td {
    font-size: 16px;
    padding: 16px;
  font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    border: 1px solid #ddd;
  }
  
  #projects-table img {
    width: 50%;
    margin-bottom: 10px;
    border-radius: 15px;
  }
  
  .github-btn {
    background-color: #457ab1;
    color: white;
    padding: 10px;
    border-radius: 5px;
  }
  
  .github-btn:hover {
    background-color: #555;
  }

  