/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body & Fonts */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
  padding: 0 20px;
}

/* Header */
header {
  text-align: center;
  padding: 40px 0;
  background: #4a90e2;
  color: #fff;
}
header h1 {
  font-size: 2.5rem;
}
header p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* Navigation */
nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  background: #333;
  padding: 10px;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
nav a:hover {
  color: #4a90e2;
}

/* Sections */
section {
  margin: 40px auto;
  max-width: 900px;
}
section h2 {
  margin-bottom: 15px;
  color: #4a90e2;
  border-bottom: 2px solid #4a90e2;
  display: inline-block;
  padding-bottom: 5px;
}

/* Projects & Services Cards */
.project, .service-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  transition: transform 0.2s ease;
}
.project:hover, .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.project h3, .service-card h3 {
  margin-bottom: 10px;
  color: #333;
}
.project a {
  display: inline-block;
  margin-top: 10px;
  color: #4a90e2;
  text-decoration: none;
}
.project a:hover {
  text-decoration: underline;
}

/* Skills List */
#skillsList {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
#skillsList li {
  background: #4a90e2;
  color: #fff;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #333;
  color: #fff;
  margin-top: 40px;
}
footer p {
  margin: 5px 0;
}
