
body {
    background-color: #f5f5dc;
    color: #333;
    font-family: 'Poppins', sans-serif; /* Use Poppins font for body text */
    margin: 0;
    min-height: 100vh; /* Ensure the body covers the full viewport height */
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
  }

  main {
    padding: 20px;
    display: flex;
    align-items: center;
    padding-top: 57px;
    padding-bottom: 103px;
    height:100%;
    flex-direction: column;
  }
  
header {
    background-color: #333;
    color: #fff;
    padding: 10px;
    font-family: 'Poppins', sans-serif; /* Use Poppins font for header text */
    /* make text on the center */
    text-align: center;
  }
  
  header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  header nav ul li {
    display: inline;
    margin-right: 20px;
  }
  
  header nav ul li a {
    text-decoration: none;
    color: #fff;
    /* Add some padding to make the clickable area larger */
    padding: 5px 10px;
    transition: background-color 0.2s;
  }
  
  header nav ul li a:hover {
    text-decoration: underline;
    background-color: rgba(255, 255, 255, 0.1);
  }
  

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 4px 0;
    font-size: 14px;
    width: 100%;
    position: fixed;
    bottom: 0;
  }
  
  
  /* New CSS for the footer container */
  .footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 10px; /* Add some padding to the footer */
    background-color: #333; /* Add a background color to the footer */
  }
  
  .social-media-icons {
    display: flex;
    align-items: center;
  }
  
  .social-media-icons a {
    display: inline-flex; /* Use inline-flex to control the size of the anchor element */
    align-items: center; /* Align the icons vertically in the center */
    justify-content: center; /* Align the icons horizontally in the center */
    margin: 0 10px;
    width: 30px; /* Set the width of the anchor element */
    height: 30px; /* Set the height of the anchor element */
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    background-color: #fff; /* Add a background color to the icons */
  }
  
  .social-media-icons img {
    width: 20px; /* Adjust the size of the icons */
    height: 20px; /* Adjust the size of the icons */
    object-fit: cover; /* Ensure the icons maintain their aspect ratio */
  }
  
  /* New CSS for the copyright text */
  .footer-content p {
    margin: 0 10px; /* Add margin to create space between the text and icons */
  }

  /* Add a scale-in animation to the social media icons */
  .social-media-icons a {
    animation: scaleIn 0.5s ease-in-out;
  }
  /* Add your general styles here */

  .not-bold{
    font-weight: normal;
    font-size: 0.73em;
  }

  .contact-content{
    height: 100%;
  }

  .contact-content a{
    padding: 5px 10px;
    color: rgb(86, 54, 54);
    font-weight: 450;
    text-decoration: none;
  }
  .contact-content p{
    padding-left: 10px;
  }

  /* add animation when a is hovered */
    .contact-content a:hover{
        /* add some background box */
        background-color: rgb(86, 54, 54, 0.1);
        color: #333;
        animation: scaleIn 0.5s ease-in-out;
    }

    /* style for graduation paper */
    
.education {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0 60px;
    flex:1;
    animation: slideInUp 1s ease-in-out;
  }
  
  .education-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    text-align: justify;
  }

  .education-content:hover{
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* transition: transform 0.5s ease-in-out; */
    transform: scale(1.05);
  }
  
  .education-content .left {
    flex: 1;
    padding: 0 0 0 30px;
  }
  
  .education-content .left img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  
  .education-content .right {
    flex:1;
    padding: 10px 20px 20px 73px;
  }
  
  .education-content h2 {
    font-size: 24px; /* Reduce font size for smaller screens */
    margin-bottom: 15px;
  }
  
  .education-content p {
    font-size: 16px;
    line-height: 1.6;
  }
    
.sh-icon{
  display: none;
}

.loader{
  display: none;
}
  @keyframes scaleIn {
      from {
        transform: scale(0.5);
      }
      to {
        transform: scale(1);
      }
    }
    
@keyframes slideInUp {
    from {
      opacity: 0;
      transform: translateY(-50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }


@media screen and (max-width: 1168px) {
  .menu-icon {
    position: fixed;
    right: 0;
    float: right;
    cursor: pointer;
    margin-right: 22px;
    z-index: 999;
  }
  .sh-icon{
    display: block;
    float: left;
    /* make it center vertically */
    padding: 4px 7px 0;
  }
  
  .active.loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: rgba(1, 1, 1, 0.9); /* Semi-transparent black */
    flex-direction: column;
    z-index: 2;
    margin-left: 50%;
  }

  .active.loader{
    display: block;
    list-style: none;
  }

  .active.loader ul{
    list-style: none;
    margin-top: 70px;
    margin-left: -12px;
    padding-left: 0;
  }

  .active.loader ul li{
    margin-top: 37px;
  }

  .active.loader ul li a{
    text-decoration: none;
    color: white;
  }

  .bar1, .bar2, .bar3 {
    width: 35px;
    height: 2px;
    background-color: white;
    margin: 6px 0;
    transition: 0.4s;
    /* highlight border */
  }
  
  .change .bar1 {
    transform: translate(0, 8px) rotate(-45deg);
  }
  
  .change .bar2 {opacity: 0;}
  
  .change .bar3 {
    transform: translate(0, -8px) rotate(45deg);
  }
    .education-content{
        
    flex-direction: column; /* Stack the sections on smaller screens */
    }
    header nav ul {
      text-align: center; /* Center the navigation items on smaller screens */
    }
    header nav ul li {
      display: none; /* Display list items as blocks to stack them vertically */
      margin: 10px 0; /* Add some vertical spacing between navigation items */
    }
}


@media only screen and (max-width: 480px) {
  
    /* Add some spacing between the social media icons and the copyright text in mobile view */
    .social-media-icons {
      justify-content: center;
    }
  
    /* Adjust the size of the social media icons for mobile view */
    .social-media-icons a {
      width: 25px;
      height: 25px;
    }
  
    .social-media-icons img{
      width: 15px;
      height: 15px;}
  
    /* Adjust the font size of the copyright text for mobile view */
    .footer-content p {
      font-size: 12px;
    }
    .education-content {
      padding: 40px 20px; /* Adjust padding for better spacing on smaller screens */
    }
  
    .education-content h2 {
      font-size: 20px; /* Further reduce font size for mobile */
      margin-bottom: 10px;
    }
    .education-content .left {
      flex: 1;
      padding: 20px;
    }
}