body {
    margin: 0px;
    background-color: #161513;
}
.top-bar {
   display: flex;
   justify-content: center;
   align-items: center;
   background-color: #222222;
   padding: 0px 45px;
}
.logo h3{
    margin: 0;
}
.bar {
    padding: 25px;
    display: flex;
    gap: 80px;    
}
.bar a {
   text-decoration: none;
   color: #c1ff72;
    padding:  10px;
    border-radius: 15px;
    font-size: 20px;
}
.bar a:hover {
    transform: scale(1.05);
}
.about-me {
    margin-top: 112px;
    display: flex;
    flex-direction: column;
    align-items: center;

}
.about-img img
{
    
    width: 250px ;
    height: 250px ;
    border-radius: 50%;
}
.title{
     display:flex ;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.hi{
  font-size: 300px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: #FFFFFF;
}
h3 {
  font-size: 300px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800; 
  background: radial-gradient(circle,rgba(255, 134, 96, 1) 0%, rgba(154, 51, 255, 1) 100%);
  background-clip: text;
  color: transparent;
  margin: 0;
  background-size: 200% auto;
  animation: gradientAnimation 3s linear infinite;
}
@keyframes gradientAnimation {
    0%{
      background-position: 200% 50%;
    }
    100%{
        background-position: 0% 50%;
    }
}
.intro {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 25px;
    margin-top: 150px;
    color: white;
    display: flex;
   align-items: center;
   gap: 100px;
}
.intro span {
   color: #c1ff72;
   background: radial-gradient(circle,rgba(255, 134, 96, 1) 0%, rgba(154, 51, 255, 1) 100%);
   background-clip: text;
   color: transparent;
   background-size: 200% auto;
   animation: gradientAnimation 3s linear infinite;
}
.Skills {
    margin-top: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 80px;
}
.Skills span {
    color: #C5C5C5;
    font-size: 25px;
}
.Skills img{
    width: 62px;
    height: 62px;
}
.skill-img {
    display: flex;
    align-items: center;
    gap: 80px;
}
.skill-img img:hover {
    transform: scale(1.2);
}
.projects{
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    display: flex;
    gap: 65px;
}
.projectimg {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 60px;
}
.projectimg img{ 
    width: 390px;
    height: 390px;
    border-radius: 15px;
}
.projects span {
    font-size: 30px;
    margin-top: 35px;
}
.projectimg img:hover {
    transform: scale(1.05);
}
.content-info {
   display: flex;
   flex-direction: column;
   align-items: center; 
   margin-top: 180px;
   font-family: 'Poppins', sans-serif;
   font-weight: 800;
   color: #FFFFFF;
   background:#222222 ;
}
.content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
    gap: 30px;
}
.content i {
     color: #FFFFFF;
    font-size: 20px;
}
.content i:hover {
    transform: scale(1.1);
}
.content span {
    font-size: 20px;
}
.Reco-bar {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   color: #FFFFFF;
   margin-top: 50px;
   margin: 255px;
   gap: 25px;
}
.Recommendations
{
    display: flex;
    flex-direction: column;
   justify-content: center;
    gap: 15px;

}
.Recommendations input {
   width: 800px;
   height: 40px;
   padding: 0px 15px;
   border-radius: 10px;
}
.Recommendations textarea {
   width: 800px;
   height: 180px;
   padding: 5px 10px;
   border-radius: 10px;
   resize: none;        

}
.Recommendations span {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 25px;
}
.Submit  {
  
    width: 204px;
    height: 64px;
    border-radius: 35px;
    font-size: 32px ;
    border: none;
   background: radial-gradient(circle,rgba(255, 134, 96, 1) 0%, rgba(154, 51, 255, 1) 100%);
    color: black;
    background-clip: text;
   color: transparent;
     background-size: 200% auto;
   animation: gradientAnimation 3s linear infinite;
}
.Reco-bar button {
    border-radius: 35px;
        border: none;
        background-color: #FFFFFF;
}

.commnt  {
  font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: #FFFFFF;
    margin-top: 150px;
    display: flex;
   flex-direction: column;
   align-items: center;
   gap: 10px;
}
.commnt h2 {
    margin-bottom: 0;
}
.commnt ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 0; 
  padding-left: 0;
  gap: 50px;
}
.commnt li {
    list-style: none;
    width: 150px;
    background-color: #FFFFFF;
    color: #161513 ;
    padding: 10px;
    border-radius: 10px;
}
.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 25px 40px;
  border-radius: 12px;
  box-shadow: 0px 5px 20px rgba(0,0,0,0.4);
  text-align: center;
  z-index: 1000;
}
.popup button {
  margin-top: 15px;
  padding: 8px 15px;
  border: none;
  background-color: #4CAF50;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}
.popup button:hover {
  background-color: #45a049;
}