@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right, #f9f9f9, #e3f2fd);
  color: #333;
  line-height: 1.6;
}

header {
  background: linear-gradient(to right, #1976d2, #0d47a1);
  color: #fff;
  padding: 2rem 0;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

.section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #0d47a1;
}

.skills-list, .soft-skills-list {
  list-style: none;
  padding: 0;
}

.skills-list li, .soft-skills-list li {
  background: #e3f2fd;
  padding: 12px;
  margin: 8px 0;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.project {
  background: #ffffff;
  padding: 20px;
  border-left: 5px solid #1976d2;
  margin-bottom: 20px;
  border-radius: 10px;
  transition: transform 0.2s ease;
}

.project:hover {
  transform: scale(1.02);
}

form {
  background: rgba(255, 255, 255, 0.85);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

form input, form textarea {
  margin: 10px 0;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

form button {
  background-color: #1976d2;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background-color: #0d47a1;
}

footer {
  background: #0d47a1;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}
