/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background-color: #f9f9f934;
  color: #333;
}

.hero {
  background: linear-gradient(to right, #1e3c72, #2a5298);
  color: white;
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  display: inline-block;
}

#wave-hand {
  display: inline-block;
  animation: wave 2s infinite;
  transform-origin: 70% 70%;
  font-size: 3rem;
}

@keyframes wave {
  0%, 60%, 100% { transform: rotate(0deg); }
  20% { transform: rotate(15deg); }
  40% { transform: rotate(-10deg); }
}

.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}

.cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background-color: #ff6f61;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cta:hover {
  background-color: #ff3b2f;
}

.navbar {
  background-color: #333;
  padding: 10px 0;
}

.navbar ul {
  display: flex;
  justify-content: center;
  list-style: none;
}

.navbar li {
  margin: 0 20px;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #ff6f61;
}

.section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
  color: #2a5298;
}

.project {
  background-color: rgba(255, 255, 255, 0.212);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.project h3 {
  margin-bottom: 10px;
  color: #1e3c72;
}

.project a {
  color: #ff6f61;
  text-decoration: none;
  font-weight: 600;
}

.project a:hover {
  text-decoration: underline;
}

.skills-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  list-style: none;
}

.skills-list li {
  background-color: #e3e3e3;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
}

.download-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #1e3c72;
  color: rgb(255, 255, 255);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.download-btn:hover {
  background-color: #16325c;
}

footer {
  background-color: #2a5298;
  color: white;
  text-align: center;
  padding: 20px 10px;
  margin-top: 40px;
  font-size: 0.9rem;
}
