body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}
.job-info{
  display: flex;
  justify-content: space-between;
  
}

.job-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.job-info h3 {
  margin: 0;
}
.project-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
}

.job .date {
  font-weight: normal;
  font-size: 1rem;
  color: #555;
}
.resume {
  max-width: 800px;
  margin: 40px auto;
  background: #fff;
  padding: 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

header h1 {
  margin: 0;
  font-size: 2em;
  color: black;
}

header p {
  margin: 5px 0;
  font-size: 0.95em;
}

a {
  color: #0077cc;
  text-decoration: none;
}

h2 {
  border-bottom: 2px solid #ddd;
  padding-bottom: 5px;
  margin-top: 30px;
}

.job, .project {
  margin-bottom: 20px;
}

.date {
  font-size: 0.85em;
  color:black;
}
.header{
    display: flex;
    flex-direction: column;
    align-items: center;
}


.cert-img{
  size: 10%;
}

.cert-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.cert-section a {
  display: inline-block;
  width: 120px;
  transition: transform 0.2s ease;
}

.cert-section a:hover {
  transform: scale(1.05);
}

.cert-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 600px) {
  .cert-section a {
    width: 100px;
  }

  .resume {
    padding: 1rem;
  }

  .header p {
    font-size: 0.85rem;
  }
}