body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  user-select: none;
}
a {
  text-decoration: none;
  color: #000000;
}
.hello {
  cursor: pointer;
}

.hello span {
  display: inline-block;
  transition: transform 0.2s ease;
}

.hello:hover span {
  animation: shake 1.5s ease-in-out forwards;
}

/* Keyframes for shake effect */
@keyframes shake {
  0% {
    transform: translateX(0) rotate(0deg);
  }
  10% {
    transform: translateX(-5px) rotate(-10deg);
  }
  20% {
    transform: translateX(10px) rotate(10deg);
  }
  30% {
    transform: translateX(-10px) rotate(-5deg);
  }
  40% {
    transform: translateX(5px) rotate(5deg);
  }
  50% {
    transform: translateX(-5px) rotate(-10deg);
  }
  60% {
    transform: translateX(5px) rotate(15deg);
  }
  70% {
    transform: translateX(-3px) rotate(-10deg);
  }
  80% {
    transform: translateX(2px) rotate(5deg);
  }
  90% {
    transform: translateX(-1px) rotate(2deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}
.resume-link a {
  background-color: #f89d00;
  border-radius: 25px;
  color: #f2f2f2;
  padding-right: 20px !important;
  padding-left: 20px !important;
}
.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.hero {
  background: #f8f9fa;

  padding: 100px 0;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}
.hero h1 {
  font-size: 3rem;
  font-weight: bold;
}
.hero p {
  font-size: 1.25rem;
}
table td {
  border: 0.5px solid #f2f2f2;
  padding: 0.5rem 1rem;
}
#projects .card {
  transition: transform 0.3s ease;
}
#projects .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Skills Section */
#skills {
  padding: 40px 0;
}

#skills h2 {
  font-size: 2rem;
}

#skills h4 {
  margin-bottom: 15px;
}

#skills ul {
  display: flex;
  list-style-type: none;
  padding: 0;
  font-size: 1rem;
  flex-wrap: wrap;
}

#skills ul li {
  margin-bottom: 10px;
  padding: 10px 20px;
  position: relative;
  background-color: #f2f2f2;
  margin: 5px;
  border-radius: 5px;
  transition: transform 0.3s ease;
}
#skills ul li:hover {
  transform: scale(1.1);
}

#contact form {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 8px;
}
.auto-type {
  color: #f89d00;
}
footer {
  background: #f2f2f2;
}
footer a {
  color: #f89d00;
  text-decoration: none;
}
/* Contact Section */
#contact {
  padding: 40px 0;
}

#contact h2 {
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.contact-link {
  text-decoration: none;
  color: black;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.contact-link:hover {
  border-color: black;
}

.contact-link i {
  font-size: 1.5rem;
}
.heading {
  border-bottom: 2px solid #f89d00;
  /* width: ; */
}
