@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; } 

body {
  font-family: 'Roboto', sans-serif;
  background: #F4F7F6;
  color: #333;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }

/* Header */
header {
  background: linear-gradient(to right, #4b6cb7, #182848);
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}
header h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}
header p {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.contact-info a {
  color: #fff;
  margin: 0 5px;
  font-weight: 500;
}

/* Container */
.container {
  max-width: 1000px;
  width: 90%;
  margin: 40px auto;
  background: #fff;
  border-radius: 8px;
  padding: 30px 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Section Headings */
.section {
  margin-bottom: 40px;
}
.section h2 {
  font-size: 1.8rem;
  color: #4b6cb7;
  margin-bottom: 20px;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

/* Summary */
.summary {
  font-size: 1rem;
  margin-bottom: 20px;
}

/* Skills & Languages */
.skills ul, .languages ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.skills ul li, .languages ul li {
  background: #e0e7ff;
  color: #182848;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Honors */
.honors {
  background: #f0f8ff;
  border-left: 4px solid #4b6cb7;
  padding: 15px;
  border-radius: 4px;
  font-style: italic;
}

/* Jobs & Experience */
.job {
  margin-bottom: 30px;
  border-left: 4px solid #4b6cb7;
  padding-left: 15px;
  transition: transform 0.2s;
}
.job:hover {
  transform: translateX(5px);
}
.job h3 {
  color: #182848;
  font-size: 1.3rem;
  margin-bottom: 5px;
}
.job .details {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 10px;
}
.job ul {
  margin-left: 20px;
}
.job ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* Education */
.education-entry {
  margin-bottom: 20px;
}
.education-entry h3 {
  font-size: 1.2rem;
  color: #182848;
}
.education-entry .details {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 8px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  header h1 { font-size: 2rem; }
  .container { padding: 20px; }
}
