body {
    margin: 0;
    padding: 0;
    font-family: 'Abyssinica SIL', serif;
    font-family: 'EB Garamond', serif;
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
  }
  
  ::-webkit-scrollbar {
    width: 10px;
  }
  
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  ::-webkit-scrollbar-thumb {
    background: #888;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  
  
  #homes {
    background-color: #0f0e17;
    width: 100%;
  }
  
  #nav-menu {
    background-color: #0f0e17;
    position: fixed;
    width: 100%;
    z-index: 101;
    
    /* border:2px solid red; */
  }
  
  .navbar h2 {
    color: #ff8906;
    font-weight: bold;
  }
  
  
  .navbar-nav li a {
    margin-left: 20px;
    color: #a7a9be;
    /* border:2px solid green; */
  }
  
  
  /* @keyframes fadeInAnimation {
      0% {
        opacity: 0;
      }
      100% {
        opacity: 1;
      }
    }
    
    #nav-menu {
      animation: fadeInAnimation 1s ease-in-out;
    }
     */
  
  /* 
     @keyframes slideAnimation {
      0% {
        transform: translateY(-100%);
      }
      100% {
        transform: translateY(0);
      }
    }
    
    #nav-menu {
      animation: slideAnimation 1s ease-in-out;
    } */
  
  /* @keyframes scaleAnimation {
      0% {
        transform: scale(0);
      }
      100% {
        transform: scale(1);
      }
    }
     */
  /*     
    #nav-menu {
      animation: scaleAnimation 1s ease-in-out;
    } */
  
  
  @keyframes slideDownAnimation {
    0% {
      transform: translateY(-100%);
    }
  
    100% {
      transform: translateY(0);
    }
  }
  
  #nav-menu {
    animation: slideDownAnimation 1s ease-in-out;
  }
  
  
  
  #typingsvg {
    text-align: center;
    /* margin-top: 100px; */
  }
  
  #user-title {
    font-size: 48px;
  }
  
  #user-name {
    font-size: 48px;
    color: #ff8906;
  }
  
  #user-job-title {
    font-size: 32px;
    color:white;
   /* text-align: left ; */
  }
  
  .typing-text {
    font-size: 32px;
    color: #ff8906;
    /* padding-bottom: 20px; */
  }
  
  #user-detail-intro1{
    margin-top: 40px;
  }
  
  .name {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: space-around;
    padding-bottom: 50px;
    color: white;
    padding-top: 100px;
    background-color: black;
  }
  
  .name>div:nth-child(1) {
    width: 35%;
  }
  
  .name>div:nth-child(1)>img {
    width: 300px;
    border-radius: 40%;
    margin-top: 50px;
  
  
  }
  
  .name>div:nth-child(2) {
    width: 60%;
  }
  
  .name img {
    width: 300px;
  }
  
  .name h1 {
    /* color: #ff8906; */
    font-weight: bold;
    font-size: 45px;
  }
  
  /* .name span {
    color: white;
    font-size: 18px;
    font-weight: bolder;
  } */
  
  .name a {
    font-size: 30px;
    color: gray;
  }
  
  .resume-btn {
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 70px;
  }
  
  .resume-btn .btn {
    border: 1px solid #ff8906;
    padding: 10px 35px;
    color: white;
  }
  
  
  .resume-btn a button {
    color: white;
    font-size: 17px;
  }
  
  .resume-btn button:hover {
    background-color: #ff8906;
    color: white;
  }
  
  /* @keyframes fadeAnimation {
      0% {
        opacity: 0;
        transform: translateY(20px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .name, .resume-btn {
      animation: fadeAnimation 4s ease-in-out infinite;
    } */
  
  
  @keyframes slideAnimation {
    0% {
      opacity: 0;
      transform: translateY(-20px);
    }
  
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .name,
  .resume-btn {
    animation: slideAnimation 3s ease-in-out;
  }
  
  
  /* @keyframes scaleAnimation {
      0% {
        transform: scale(0);
      }
      100% {
        transform: scale(1);
      }
    }
    
    .name, .resume-btn {
      animation: scaleAnimation 3s ease-in-out;
    } */
  
  /* @keyframes bounceAnimation {
      0% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-20px);
      }
      100% {
        transform: translateY(0);
      }
    }
    
    .name, .resume-btn {
      animation: bounceAnimation 1s ease-in-out infinite;
    }
     */
  
  
  
  
  
  
  
  #skill {
    text-align: left;
  }
  
  .skills {
    width: 100%;
    color: black;
    text-align: center;
    padding-top: 12px;
  }
  
  .skills>div:nth-child(1) {
    margin-top: 70px;
    margin-bottom: 30px;
  }
  
  .skills h1 {
    font-weight: bold;
  }
  
  .skills>div:nth-child(2) {
    width: 90%;
    margin: auto;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
    row-gap: 20px;
  }
  
  .skills img {
    width: 100px;
  }
  
  @keyframes fadeAnimation {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
  
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes scaleAnimation {
    0% {
      transform: scale(0);
    }
  
    100% {
      transform: scale(1);
    }
  }
  
  /* @keyframes rotateAnimation {
    0% {
      transform: rotate(0);
    }
  
    100% {
      transform: rotate(360deg);
    }
  } */
  
  #skills {
    animation: fadeAnimation 4s ease-in-out ;
  }
  
  .skills>div:nth-child(2)>div {
    animation: scaleAnimation 4s ease-in-out ;
  } 
  
  /* .skills>div:nth-child(2)>div:nth-child(odd) {
    animation: rotateAnimation 4s ease-in-out infinite;
  } */ 
  
  
  /* 
     @keyframes fadeAnimation {
      0% {
        opacity: 0;
        transform: translateY(20px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes slideAnimation {
      0% {
        opacity: 0;
        transform: translateX(-20px);
      }
      100% {
        opacity: 1;
        transform: translateX(0);
      }
    }
    
    @keyframes bounceAnimation {
      0% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.2);
      }
      100% {
        transform: scale(1);
      }
    }
    
    #skills {
      animation: fadeAnimation 3.5s ease-in-out infinite;
    }
    
    .skills>div:nth-child(2)>div {
      animation: slideAnimation 3.5s ease-in-out infinite;
    }
    
    .skills>div:nth-child(2)>div:nth-child(3n+1) {
      animation: bounceAnimation 3.5s ease-in-out infinite;
    }
     */
  
  
  
  
  /* @keyframes fadeAnimation {
      0% {
        opacity: 0;
        transform: translateY(20px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes rotateAnimation {
      0% {
        transform: rotate(0);
      }
      100% {
        transform: rotate(360deg);
      }
    }
    
    @keyframes pulseAnimation {
      0% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.2);
      }
      100% {
        transform: scale(1);
      }
    }
    
    #skills {
      animation: fadeAnimation 3s ease-in-out;
    }
    
    .skills>div:nth-child(2)>div {
      animation: rotateAnimation 3s linear infinite;
    }
    
    .skills>div:nth-child(2)>div:nth-child(even) {
      animation: pulseAnimation 3s ease-in-out infinite;
    } */
  
  #about {
    width: 100%;
    padding: 50px;
    margin: auto;
    text-align: center;
    margin-top: 30px;
    padding-top: 70px;
    background-color: #0f0e17;
    color: white;
  }
  
  #about>div:nth-child(2) {
    width: 80%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  
  #about h2 {
    color: #ff8906;
    font-weight: bolder;
  }
  
  #about-section-info {
    width: 70%;
    margin: auto;
    display: flex;
    justify-content: space-evenly;
  }
  
  #about p {
    font-size: 18px;
  }
  
  #about-section-info>div {
    background-color: white;
    color: #0f0e17;
    padding: 50px 40px;
    border-radius: 20px;
  }
  
  #about-section-info>div span {
    font-weight: bolder;
  }
  
  #projects {
    width: 100%;
    margin: auto;
    padding: 50px;
    text-align: center;
    gap: 30px;
    padding-top: 72px;
  }
  
  /* @keyframes fadeAnimation {
      0% {
        opacity: 0;
        transform: translateY(20px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    #about-section-info {
      animation: fadeAnimation 3s ease-in-out infinite;
    } */
  
  /* @keyframes slideAnimation {
      0% {
        opacity: 0;
        transform: translateX(-50px);
      }
      100% {
        opacity: 1;
        transform: translateX(0);
      }
    }
    
    #about-section-info {
      animation: slideAnimation 5s ease-in-out infinite;
    }
     */
  @keyframes fadeAnimation {
    0% {
      opacity: 0;
    }
  
    100% {
      opacity: 1;
    }
  }
  
  #about-section-info {
    animation: fadeAnimation 3s ease-in-out infinite;
  }
  
  
  
  #projects>div:nth-child(2) :hover {
    background-color: rgb(201, 198, 198);
  }
  
  
  #projects h1 {
    text-align: center;
    font-weight: bolder;
    color: black;
    margin-bottom: 20px;
    
  }
  
  #projects p {
    text-align: center;
    /* width:90%; */
  }
  
  
  
  #projects>div:nth-child(2) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 10px
  }
  
  #projects>div:nth-child(2)>div {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 15px;
    color: black;
  }
  
  #projects>div:nth-child(2) a {
    color: black;
    font-size: 23px;
  }
  
  #projects div:nth-child(2)>div>img {
    width: 100%;
    /* border: 2px solid red; */
    border-radius: 20px;
  
  }
  
  #projects h3 {
    margin-top: 20px;
    font-size: 17px;
    font-family: 'Times New Roman', Times, serif;
    color: white;
    width: 200px;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: #ff8906;
    border-radius: 50px;
    padding: 5px;
    /* border: 4px solid red; */
  }
  
  
  
  /* #projects h3:hover {
    background-color: black;
    border: 4px solid red;
    background: black;
  
  } */
  
  /* @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }
    
    #projects>div:nth-child(2)>div {
      animation: fadeIn 1s ease-in-out;
    } */
  
  /* #projects>div:nth-child(2)>div {
      transition: transform 0.3s ease-in-out;
    }
    
    #projects>div:nth-child(2)>div:hover {
      transform: scale(1.1);
    } */
  
  /* #projects>div:nth-child(2)>div {
      opacity: 0;
      animation: fadeInAnimation 1s ease-in-out forwards;
    }
    
    @keyframes fadeInAnimation {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    } */
  
  /*   
    #projects>div:nth-child(2)>div {
      transition: transform 0.3s ease-in-out;
    }
    
    #projects>div:nth-child(2)>div:hover {
      transform: rotate(360deg);
    }
       */
  
  
  /* #projects>div:nth-child(2)>div {
          transition: transform 0.3s ease-in-out;
        }
        
        #projects>div:nth-child(2)>div:hover {
          animation: pulseAnimation 1s infinite;
        }
        
        @keyframes pulseAnimation {
          0% {
            transform: scale(1);
          }
          50% {
            transform: scale(1.2);
          }
          100% {
            transform: scale(1);
          }
        } */
  
  /* @keyframes pulsateAnimation {
          0% {
            background-color: #ff8906;
            transform: scale(1);
          }
          50% {
            background-color: #ffcc80;
            transform: scale(1.1);
          }
          100% {
            background-color: #ff8906;
            transform: scale(1);
          }
        }
        
        #projects>div:nth-child(2)>div {
          animation: pulsateAnimation 2s infinite;
        }
         */
  
  
  
  /* @keyframes flipAnimation {
          0% {
            transform: perspective(800px) rotateY(0);
          }
          50% {
            transform: perspective(800px) rotateY(180deg);
          }
          100% {
            transform: perspective(800px) rotateY(0);
          }
        }
        
        #projects>div:nth-child(2)>div {
          transition: transform 0.5s ease-in-out;
        }
        
        #projects>div:nth-child(2)>div:hover {
          animation: flipAnimation 1s;
        } */
  
  /* @keyframes bounceAnimation {
          0% {
            transform: translateY(0);
          }
          50% {
            transform: translateY(-20px);
          }
          100% {
            transform: translateY(0);
          }
        }
        
        #projects>div:nth-child(2)>div {
          transition: transform 0.3s ease-in-out;
        }
        
        #projects>div:nth-child(2)>div:hover {
          animation: bounceAnimation 0.5s;
        }
        
         */
  
  /* @keyframes combinedAnimation {
          0% {
            transform: rotate(0) scale(1);
            background-color: #ff8906;
            opacity: 1;
            border-color: #ff8906;
            box-shadow: 0 0 0 0 #ff8906;
          }
          25% {
            transform: rotate(45deg) scale(1.1);
            background-color: #ffcc80;
            opacity: 0.8;
            border-color: #ffcc80;
            box-shadow: 0 0 10px 4px #ffcc80;
          }
          50% {
            transform: rotate(90deg) scale(1);
            background-color: #fdd976;
            opacity: 0.6;
            border-color: #fdd976;
            box-shadow: 0 0 20px 8px #fdd976;
          }
          75% {
            transform: rotate(135deg) scale(1.1);
            background-color: #ffcc80;
            opacity: 0.8;
            border-color: #ffcc80;
            box-shadow: 0 0 10px 4px #ffcc80;
          }
          100% {
            transform: rotate(180deg) scale(1);
            background-color: #ff8906;
            opacity: 1;
            border-color: #ff8906;
            box-shadow: 0 0 0 0 #ff8906;
          }
        }
        
        #projects>div:nth-child(2)>div {
          transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, opacity 0.3s ease-in-out, border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        }
        
        #projects>div:nth-child(2)>div:hover {
          animation: combinedAnimation 2s infinite;
        }
         */
  
  /* @keyframes combinedAnimation {
          0% {
            transform: scale(1);
            opacity: 1;
            background-color: #ff8906;
            box-shadow: 0 0 0 0 #ff8906;
            border-color: #ff8906;
          }
          20% {
            transform: scale(1.2) rotate(45deg);
            opacity: 0.8;
            background-color: #ffcc80;
            box-shadow: 0 0 10px 4px #ffcc80;
            border-color: #ffcc80;
          }
          40% {
            transform: scale(1.3) rotate(90deg);
            opacity: 0.6;
            background-color: #fdd976;
            box-shadow: 0 0 20px 8px #fdd976;
            border-color: #fdd976;
          }
          60% {
            transform: scale(1.2) rotate(135deg);
            opacity: 0.8;
            background-color: #ffcc80;
            box-shadow: 0 0 10px 4px #ffcc80;
            border-color: #ffcc80;
          }
          80% {
            transform: scale(1.1) rotate(180deg);
            opacity: 0.9;
            background-color: #ff8906;
            box-shadow: 0 0 5px 2px #ff8906;
            border-color: #ff8906;
          }
          100% {
            transform: scale(1) rotate(0);
            opacity: 1;
            background-color: #ff8906;
            box-shadow: 0 0 0 0 #ff8906;
            border-color: #ff8906;
          }
        }
        
        #projects>div:nth-child(2)>div {
          transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, background-color 0.5s ease-in-out, box-shadow 0.5s ease-in-out, border-color 0.5s ease-in-out;
        }
        
        #projects>div:nth-child(2)>div:hover {
          animation: combinedAnimation 3s infinite;
        } */
  
  
  /* 
        @keyframes combinedAnimation {
          0% {
            transform: scale(1);
            opacity: 1;
            background-color: #ff8906;
            box-shadow: 0 0 0 0 #ff8906;
          }
          15% {
            transform: scale(1.2);
            opacity: 0.8;
            background-color: #ffcc80;
            box-shadow: 0 0 10px 4px #ffcc80;
          } 
           /* 50% {
            transform: scale(1.3);
            opacity: 0.6;
            background-color: #fdd976;
            box-shadow: 0 0 20px 8px #fdd976;
          }
          75% {
            transform: scale(1.2);
            opacity: 0.8;
            background-color: #ffcc80;
            box-shadow: 0 0 10px 4px #ffcc80;
          } */
  /* 100% {
            transform: scale(1);
            opacity: 1;
            background-color: #ff8906;
            box-shadow: 0 0 0 0 #ff8906;
          } */
  /* } */
  */ #projects>div:nth-child(2)>div {
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, background-color 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
  }
  
  #projects>div:nth-child(2)>div:hover {
    animation: combinedAnimation 3s infinite;
  }
  
  
  /* .github {
      width: 100%;
      margin: auto;
      background-color: #0f0e17;
      padding: 40px;
      border:2px solid red;
  
  }
  
  .github>div:nth-child(2) {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      column-gap: 10px;
      margin-top: 25px;
      border:2px solid red;
  
  }
  
  
  .github>div:nth-child(1) {
      text-align: center;
      color: #ff8906;
      font-weight: bolder;
      
  } */
  
  /* .github>div:nth-child(2)>div>p>img{
      width:80%;
      height:30vh;
      column-gap: 10px;
      margin-top: 25px;
  } */
  
  
  
  
  /* real */
  
  
  /* .github {
      width: 100%;
      margin: auto;
      background-color: #0f0e17;
      padding: 40px;
  }
  
  .github > div:nth-child(2) {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      column-gap: 10px;
      row-gap: 20px;
      margin-top: 25px;
  }
  
  .github > div:nth-child(1) {
      text-align: center;
      color: #ff8906;
      font-weight: bold;
  } */
  
  /* real */
  
  
  .github {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: auto;
    background-color: black;
    padding: 40px;
  }
  
  .github>div:nth-child(2) {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 10px;
    row-gap: 20px;
    margin-top: 25px;
    justify-content: space-evenly;
    margin-left: 20px;
    /* border:2px solid red; */
  }
  
  .github>div:nth-child(1) {
    text-align: center;
    color: #ff8906;
    font-weight: bold;
  }
  
  .github>div:nth-child(2) img {
    max-width: 100%;
  }
  
  .github>div:nth-child(3) {
    width: 100%;
    /* padding-left:100px; */
  }
  
  /* .github>div:nth-child(3) {
    width: 100%;
    animation: pulseAndFade 4s ease-in-out infinite;
  } */
  
  .github>div:nth-child(2) {
    animation: fade 3s ease-in-out infinite;
    margin-left: 10%;
    /* margin-right: 10%; */
  }
  
  @keyframes fade {
    0% {
      opacity: 1;
    }
  
    50% {
      opacity: 0.5;
    }
  
    100% {
      opacity: 1;
    }
  }
  
  /* 
  @keyframes pulseAndFade {
    0% {
      transform: scale(1);
      opacity: 1;
    }
  
    50% {
      transform: scale(1.2);
      opacity: 0.5;
    }
  
    100% {
      transform: scale(1);
      opacity: 1;
    }
  } */
  
  
  /* @keyframes fadeIn {
      0% {
        opacity: 0;
      }
      100% {
        opacity: 1;
      }
    } */
  
  /* @keyframes scaleIn {
      0% {
        transform: scale(0);
      }
      100% {
        transform: scale(1);
      }
    }
    
    @keyframes rotateIn {
      0% {
        transform: rotate(-90deg);
      }
      100% {
        transform: rotate(0);
      }
    }
    
    .github {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 100%;
      margin: auto;
      background-color: black;
      padding: 40px;
      animation: fadeIn 3s infinite ease-in-out;
    }
    
    .github > div:nth-child(1) {
      text-align: center;
      color: #ff8906;
      font-weight: bold;
      animation: scaleIn 3s infinite ease-in-out;
    }
    
    .github > div:nth-child(2) {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      column-gap: 10px;
      row-gap: 20px;
      margin-top: 25px;
      justify-content: space-evenly;
      margin-left: 20px;
      animation: rotateIn 3s infinite ease-in-out;
    }
    
    .github > div:nth-child(2) img {
      max-width: 100%;
      animation: scaleIn 3s infinite ease-in-out;
    }
    
    .github > div:nth-child(3) {
      width: 100%;
      animation: fadeIn 3s infinite ease-in-out;
    }
     */
  
  
  .contacts-section {
    width: 100%;
    color: black;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .contacts-section h3 {
    font-weight: bolder;
    text-align: center;
  
  }
  
  .contacts-section>div:nth-child(1) {
    width: 30%;
    margin: auto;
    text-align: center;
    /* align-items: center; */
  
  
  }
  
  .contacts-section>div:nth-child(2) {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20x;
    color: #0f0e17;
    padding: 40px;
  }
  
  .contacts-section>div:nth-child(2)>div:nth-child(1) {
    width: 95%;
    text-align: left;
    font-size: 17px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 13px;
    background-color: #0f0e17;
    color: white;
    padding-left: 30px;
  
  }
  
  /* #new {
      font-size: 50;
      
  } */
  
  
  
  .contacts-section>div:nth-child(2)>div:nth-child(2) {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 20px;
    text-align: center;
    width: 95%;
  }
  
  .contacts-section>div:nth-child(2)>div:nth-child(2) input {
    outline: none;
    width: 250px;
  }
  
  .contacts-section>div:nth-child(2)>div:nth-child(2) input::placeholder {
    text-align: center;
  }
  
  .contacts-section>div:nth-child(2)>div:nth-child(2) input[type="submit"] {
    border: none;
    color: #ff8906;
    background-color: white;
    border: 1px solid #ff8906;
  }
  
  .contacts-section>div:nth-child(2)>div:nth-child(2) input[type="submit"]:hover {
    background-color: #ff8906;
    color: white;
  }
  
  .contacts-section>div:nth-child(2)>div:nth-child(2) input[type="text"] {
    height: 100px;
  }
  
  /* footer {
      width: 100%;
      text-align: center;
      color: white;
      background-color: #0f0e17;
      padding: 7px;
  } */
  
  
  /* @keyframes fadeIn {
      0% {
        opacity: 0;
      }
      100% {
        opacity: 1;
      }
    }
    
    footer {
      width: 100%;
      text-align: center;
      color: white;
      background-color: #0f0e17;
      padding: 7px;
      animation: fadeIn 1s ease-in-out infinite;
    }
     */
  
  @keyframes slideUp {
    0% {
      transform: translateY(100%);
      opacity: 0;
    }
  
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  footer {
    width: 100%;
    text-align: center;
    color: white;
    background-color: #0f0e17;
    padding: 7px;
    animation: slideUp 3s ease-in-out ;
  }
  
  
  /* @media (min-width:100px) and (max-width:815px)
  {
      .name
      {
          display: inline-block;
      }
      .name>div:nth-child(1)
      {
          margin-left: 230px;
      }
  
      .name>div:nth-child(2)
      {
          margin-left: 150px;
          margin-top: 20px;
      }
  
      #about-section-info
      {
          width: 100%;
          margin-left: 10px;
      }
      #about-section-info>div{
          padding: 20px 30px;
      }
  } */
  
  
  @media only screen and (max-width: 600px) {
    #nav-menu {
      position: static;
      width:100%;
      
    }
  
    #home {
      width:100%;
    }
  
    .navbar-nav li a {
      margin: 10px 0;
      display: block;
    }
    
    
  }
  
  @media only screen and (max-width:576px) {
    #nav-menu {
      position: fixed;
      width:100%;
      
    }
  
    .navbar-nav li a {
      margin: 10px 0;
      display: block;
    }
    
    
  }
  
  @media screen and (max-width: 768px) {
    .contacts-section>div:nth-child(2) {
      grid-template-columns: repeat(1, 1fr);
      row-gap: 20px;
      padding: 20px;
    }
  
    .contacts-section>div:nth-child(2)>div:nth-child(1),
    .contacts-section>div:nth-child(2)>div:nth-child(2) {
      width: 100%;
    }
  
    .github>div:nth-child(2) {
      grid-template-columns: repeat(1, 1fr);
      row-gap: 20px;
    }
  
    #projects>div:nth-child(2) {
      grid-template-columns: repeat(1, 1fr);
    }
  
    /* #about-section-info
      {
          width: 100%;
          margin-left: 10px;
      }
      #about-section-info>div{
          padding: 20px 30px;
      } */
  
  }
  
  @media only screen and (max-width: 600px) {
    #about {
      padding: 30px;
  
    }
  
    #about>div:nth-child(2) {
      width: 100%;
    }
  
    #about-section-info {
      width: 100%;
      display: block;
    }
  
    #about-section-info>div {
      margin-bottom: 30px;
      padding: 30px 20px;
    }
  }
  
  @media (max-width: 767px) {
    .skills>div:nth-child(2) {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* Mobile Devices (max-width: 768px) */
  @media only screen and (max-width: 768px) {
    .name {
      flex-direction: column;
      align-items: center;
      padding-top: 50px;
      padding-bottom: 20px;
    }
  
    .name>div:nth-child(1) {
      width: 60%;
    }
  
    .name>div:nth-child(1)>img,
    .name img {
      width: 200px;
      border-radius: 50%;
    }
  
    .name>div:nth-child(2) {
      width: 90%;
      margin-top: 20px;
      text-align: center;
    }
  
    .name h1 {
      font-size: 30px;
      margin-top: 20px;
    }
  
    .name span {
      font-size: 30px;
    }
  
    .name a {
      font-size: 20px;
    }
  }
  
  @media screen and (max-width: 768px) {
    .github {
      padding: 20px;
    }
  
    .github>div:nth-child(2) {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      /* width: 60%; */
  
    }
  
    .github>div:nth-child(2)>div {
      width: 80%;
      margin-bottom: 20px;
    }
  
    .github>div:nth-child(2)>div>img {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      column-gap: 10px;
      margin-top: 25px;
      /* border:2px solid red; */
  
    }
  
    .github>div:nth-child(2)>div>p>img {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      column-gap: 10px;
      margin-top: 25px;
      /* border:2px solid red; */
  
    }
  
    .github>div:nth-child(3)>div>img {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      column-gap: 10px;
      margin-top: 25px;
      /* border:2px solid red; */
  
    }
  
    /* #githubclaenders { */
      /* width: 100%; */
      /* display: grid; */
      /* grid-template-columns: repeat(1, 1fr); */
      /* column-gap: 10px; */
      /* margin-top: 25px; */
      /* border:2px solid red; */
      /* padding-left:120px; */
  
    /* } */
  }
  
  /* .calender{
      width:50%;
      border:2px solid red;
  }
      */
  
  
  /* #githubclaenders {
    width: 80%;
    /* display: grid; */
    /* grid-template-columns: repeat(1, 1fr); */
    /* column-gap: 10px; */
    /* margin-top: 25px; */
    /* border:2px solid red; */
    /* padding-left:120px; */
  
  /* } */ */
  
  
  /* @media (max-width: 767px) {
      .typing-svg span {
        font-size: 60px;
        line-height: 180px;
      }
    } */
  
  
  
    /* #wholedata {
      border: 3px solid red;
      margin-top: 40px;
    } */
  
  
    /* Style for the parent container */
  /* Style for the parent container */
  #githubclaenders {
    max-width: 100%;
    overflow: hidden;
    
  }
  
  /* Style for the image inside the container */
  #githubclaenders img {
    width: 100%;
    height: auto;
    /* border:2px solid red; */
  }
  
  /* Mobile responsiveness */
  @media (max-width: 768px) {
    #githubclaenders {
        max-width: 80%;
        margin: 0 auto;
    }
  }
  
  /* Style for the <h2> element */
  #githubclaenders h2 {
    /* font-size: 24px; Adjust the font size as needed */
    color: #ff8906; /* Change the text color to your preference */
    margin-bottom: 10px; /* Add spacing below the heading */
    text-align: center; /* Center align the text */
    padding-bottom: 30px;
    padding-top:10px;
  }
  
  /* #model_cont {
    background-color: black;
  } */
  
  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
  
  }
  
  .modal-content {
    background-color: black;
    margin: 15% auto;
    padding: 50px;
    border: 1px solid #888;
    max-width: 400px; /* Set the maximum width of the modal content */
    width: 80%;
    text-align: center;
    border-radius: 10px;
    /* border-radius: 2px solid red; */
  }
  
  /* Close button styles */
  .close {
    color: black;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }
  
  /* OK button styles */
  .ok-button {
    background-color: #ff8906;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
  }
  
  .ok-button:hover {
    background-color: #ff8906;
  }
  
  /* Email sent message styles */
  .email-sent {
    color:black;
    font-weight: bolder;/* Change the text color for email sent message */
  }
  
  
  
  #social {
    display: flex;
    gap: 20px;
    justify-content: center;
    font-size: 30px;
    margin-top: 10px;
  }