* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 100px;
  border-bottom: 1px solid #e0e0e0;
  background-color: #fff;
}

.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.hero-text h2 {
  font-size: 24px;
  color: #555;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-text p {
  margin-bottom: 25px;
  color: #666;
}

.btn {
  display: inline-block;
  background-color: #333;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #555;
}

.hero img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
}

/* Skills Section */
.skills {
  background-color: #f8f9fb;
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.skills-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.skills h2 {
  margin-bottom: 25px;
  font-size: 1.8rem;
  text-align: center;
}

.skill-category {
  margin-bottom: 30px;
}

.skill-category h3 {
  margin-bottom: 10px;
  color: #333;
  font-size: 1.1rem;
}

.skill {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.skill span {
  flex: 1;
  font-weight: 500;
}

.bar {
  flex: 2;
  background: #ddd;
  border-radius: 5px;
  height: 6px;
  overflow: hidden;
  margin-left: 10px;
}

.bar div {
  height: 6px;
  background: #7bb77d;
}

/* Projects Section */
.projects {
  background-color: #ffffff;
  padding: 60px 100px;
}

.projects h3 {
  font-size: 22px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 10px;
}

.project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.project {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px;
  flex: 1;
  min-width: 300px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.project:hover {
  transform: translateY(-5px);
}

.project h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.project small {
  color: #888;
  display: block;
  margin-bottom: 10px;
}

.project p {
  color: #555;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #f8f9fb;
  color: #666;
  font-size: 0.9rem;
  border-top: 1px solid #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .hero img {
    margin-top: 20px;
  }

  .skills {
    padding: 40px 20px;
  }

  .projects {
    padding: 40px 20px;
  }
}
