* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #f0f0f0;
  line-height: 1.6;
  background-color: #0e0e0e;
}



header {
  background-color: #000;
  color: #f0f0f0;
  padding: 2rem 1rem;
  text-align: center;
}


nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: auto;
}

.hire-me a {
  color: #fd0606;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 20px;
  transition: color 0.3s ease;
}

.hire-me a:hover {
  color: #b700ff;
}


.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 20px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #9dff00;
}



.logo {
  font-size: 1.5rem;
  font-weight: bold;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links li a {
  color: #b700ff;
  text-decoration: none;
  font-weight: 600;
}
.hero {
  margin-top: 3rem;
}
.hero h1 {
  font-size: 3rem;
}
.hero h1 span {
  color: #b700ff;
}
.hero p {
  font-size: 1.2rem;
  margin: 1rem 0;
}
.btn {
  display: inline-block;
  background: #b700ff;
  color: black;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}

.section {
  padding: 4rem 1rem;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}
.about .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.profile-pic {
  border-radius: 50%;
  width: 150px;
  height: 150px;
}
.project-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.project-card {
  text-decoration: none;
  color: rgb(255, 0, 0);
  background: rgb(0, 0, 0);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgb(126, 4, 4);
}

.project-card h3
.project-card p {
  color: #b700ff;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  color: rgb(0, 0, 0);
  list-style: none;

}
.skills-list li {
  background: #b700ff;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: bold;
}
.contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: auto;
}
input, textarea {
  padding: 0.75rem;
  border: 1px solid #b700ff;
  border-radius: 8px;
}
button {
  background: #b700ff;
  color: rgb(0, 0, 0);
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}
footer {
  background: #b700ff;
  color: rgb(0, 0, 0);
  text-align: center;
  padding: 1rem 0;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
}
.hero p {
  font-size: 1.25rem;
}

.section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.project-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
}
.project-card p {
  font-size: 1rem;
  color: #666;
}

.about .content p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.skills-list li {
  font-size: 1rem;
}

footer p {
  font-size: 0.9rem;
}
