/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
  padding: 20px;
}

/* Header Section */
header {
  text-align: center;
  background-color: #0077cc;
  color: white;
  padding: 30px 10px;
  border-radius: 8px;
  margin-bottom: 30px;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.1rem;
  font-weight: 500;
}

/* Section Titles */
section h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #0077cc;
}

/* About Section */
#about {
  text-align: center;
  margin-bottom: 30px;
}

#about img {
  border-radius: 50%;
  margin-bottom: 15px;
  border: 2px solid #0077cc;
}

/* Skills List */
#skills ul {
  list-style: none;
  padding-left: 0;
}

#skills li {
  background: #e2e2e2;
  padding: 10px;
  margin: 5px 0;
  border-left: 5px solid #0077cc;
  border-radius: 4px;
}

/* Projects Section */
#projects {
  margin-top: 30px;
}

.project {
  background: #fff;
  border: 1px solid #ddd;
  padding: 15px;
  margin: 10px 0;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Resume Link */
a {
  color: #0077cc;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ccc;
  color: #777;
  font-size: 0.9rem;
}
