/* General */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #f4f6f9;
  color: #333;
}

/* Header */
header {
  background: #004aad; /* deep blue */
  color: #fff;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
}

header h2 {
  margin: 5px 0 15px;
  font-weight: 400;
  font-size: 1.2rem;
}

nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

.resume-link {
  background: #ffcc00;
  color: #000;
  padding: 5px 10px;
  border-radius: 5px;
}

/* Home Section */
.home-section {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

.profile-pic {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.home-text {
  flex: 1;
  min-width: 280px;
}

.btn {
  display: inline-block;
  background: #004aad;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 15px;
}

.btn:hover {
  background: #003580;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #002b5c;
  color: #eee;
  margin-top: 40px;
}

footer a {
  color: #ffcc00;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

.project {
  background: #fff;
  padding: 20px;
  margin: 15px 0;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.project h3 {
  margin-top: 0;
  color: #004aad;
}

.company-logo {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
}