body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #f4f6f8;
  color: #333;
}
header {
  background: #004aad;
  color: white;
  padding: 1rem;
  text-align: center;
}
nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}
.hero {
  text-align: center;
  margin-top: 50px;
}
.btn {
  background: #004aad;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
}
/* ====== Global Styles ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f5f7fb;
  color: #333;
  line-height: 1.6;
  padding: 40px;
}

/* ====== Headings ====== */
h2 {
  color: #1a73e8;
  margin-bottom: 15px;
  border-bottom: 2px solid #1a73e8;
  display: inline-block;
  padding-bottom: 5px;
  font-weight: 600;
}

h4 {
  margin-top: 10px;
  color: #333;
}

/* ====== Forms ====== */
form {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  max-width: 600px;
}

input[type="text"],
textarea {
  width: 100%;
  padding: 10px 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

input[type="text"]:focus,
textarea:focus {
  border-color: #1a73e8;
  box-shadow: 0 0 5px rgba(26, 115, 232, 0.3);
  outline: none;
}

/* ====== Buttons ====== */
button {
  background: #1a73e8;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.3s ease;
}

button:hover {
  background: #155cb0;
}

/* ====== Outputs ====== */
#careerOutput,
#portfolioDisplay,
#resumeOutput {
  margin-top: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

#portfolioDisplay div {
  margin-bottom: 15px;
  border-left: 4px solid #1a73e8;
  padding-left: 10px;
}

/* ====== Responsive Design ====== */
@media (max-width: 768px) {
  body {
    padding: 20px;
  }

  form {
    padding: 20px;
  }

  button {
    width: 100%;
  }
}

/* ====== Footer (Optional) ====== */
footer {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #666;
}

