body {
  font-family: 'Poppins', sans-serif;
  background-color: #f0f2f5;
  color: #333;
  line-height: 1.4;
}

h1, h2 {
  font-weight: 700;
}

p {
  font-weight: 400;
}

.summ {
  width: auto;
}

a {
  color: rgb(30, 30, 179);
  text-decoration: none;
}

a:hover {
  color: blue;
  text-decoration: underline;
}

header {
  background: linear-gradient(to right, #831bcd, #f9620b);
  color: #f0f2f5;
  padding: 40px;
  text-align: center;
}

section {
  padding: 10px;
  text-align: center;
}

img {
  height: 400px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

form {
  max-width: 800px;
  margin: auto;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

form input, form textarea {
  width: calc(100% - 20px);
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  border-style: none;
  background: linear-gradient(to right, #831bcd, #f9620b);
  color: #fff;
  width: 120px;
  height: 40px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
}

form button:hover {
  background: linear-gradient(to right, #f9620b, #831bcd);
}

footer {
  background: linear-gradient(to right, #831bcd, #f9620b);
  padding: 10px;
  color: #fff;
}

hr {
  border: 2px solid rgb(232, 223, 223);
  width: 80%;
  margin: 20px auto;
}

.horizantal-scroll {
  overflow-x: hidden;
  width: 100%;
}

.icons {
  display: flex;
  animation: scrollanimation 10s linear infinite;
  width: max-content;
}

.icons img {
  width: 60px;
  height: 60px;
  margin-right: 20px;
}

@keyframes scrollanimation {
  0% {
    transform: translateX(100vw);
  }
  100% {
    transform: translateX(-100vw);
  }
}

.skills-list li {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  margin: 5px;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  animation: bounce 1s infinite alternate;
}

@keyframes bounce {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}


.fas , .fab {
  margin-right: 1px;
  color: inherit;
}


.dark-mode{
  background-color: #333;
  color: #fff;
  label{
    color: #333;
  }
  a{
    color: white;
  }

  li{
    color: black;
  }
}

.dark-mode button{
  background-color: #555;
  color: #fff;
}


.lg{
  border-radius: 50%;
  width: 30px;
  height: 30px;
}


#pl{
  margin-top: 50px;
}

#pl .skill{
  margin-bottom: 30px;
}

#pl .progress-bar{
  width: 0;
  height: 20px;
  background: linear-gradient(to right,#831bcd, #f9620b );
  border-radius: 10px;
  transition: width 1s ease-in-out;
}

#pl .progress{
  height: 100%;
  border-radius: 10px;
  background-color: transparent;
}