/* Reset defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

/* Hero Section */
#hero {
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: white;
  text-align: center;
  padding: 100px 20px;
}

#hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

#hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
}

/* Skills Section */
#skills {
  padding: 50px 20px;
  background-color: #f1f1f1;
  text-align: center;
}

.skills-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.skill {
  background-color: #007bff;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 14px;
}

/* Projects Section */
#projects {
  padding: 50px 20px;
  background-color: #fff;
  text-align: center;
}

.projects-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.project-card {
  background-color: #f9f9f9;
  padding: 20px;
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card h3 {
  margin-bottom: 10px;
  color: #1a1a1a;
}

.project-card p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #333;
}

.project-card a {
  display: inline-block;
  margin-right: 10px;
  text-decoration: none;
  padding: 8px 12px;
  background-color: #007bff;
  color: white;
  border-radius: 5px;
  transition: 0.3s;
}

.project-card a:hover {
  background-color: #0056b3;
}

/* Contact Section */
#contact {
  padding: 50px 20px;
  background-color: #f1f1f1;
  text-align: center;
}

#contact a {
  color: #007bff;
  text-decoration: none;
}

#contact a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  padding: 20px;
  text-align: center;
  background-color: #333;
  color: white;
}

footer a {
  color: #fff;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .projects-container {
    flex-direction: column;
    align-items: center;
  }
}
