body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #003366;
  line-height: 1.6;
}

header {
  background: #004080;
  padding: 15px 0;
}

.nav-container {
  width: 80%;
  margin: 0 auto;
  display: flex;
  gap: 25px;
  font-weight: bold;
}

nav a {
  color: white;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

nav a:hover {
  background: #0066cc;
}

.main-wrapper {
  width: 80%;
  margin: 40px auto;
}

table.home-layout {
  width: 100%;
  border-spacing: 40px 0;
  table-layout: fixed;
}

td.image-cell {
  width: 30%;
  vertical-align: top;
}

td.image-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

td.content-cell {
  width: 70%;
  vertical-align: top;
}

 .job {
      margin-bottom: 40px;
      padding-bottom: 20px;
      border-bottom: 1px solid #ccc;
    }
    .job h2 {
      margin-bottom: 5px;
    }
    .job .details {
      font-style: italic;
      color: #555;
      margin-bottom: 15px;
    }
    .job ul {
      padding-left: 20px;
    }
    .job li {
      margin-bottom: 10px;
    }

/* General page structure tweaks */
.content-frame {
  width: 80%;
  margin: 0 auto;
  padding: 2rem 0;
  text-align: left;
}

/* Section styling */
section {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Heading styles */
section h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #2a2a2a;
  border-bottom: 2px solid #ccc;
  padding-bottom: 0.5rem;
}

/* Education entry box */
.education-entry {
  margin-bottom: 2rem;
  padding: 1.2rem;
  border-left: 4px solid #007acc;
  background-color: #ffffff;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}

.education-entry:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Subheading (Certificate or Diploma title) */
.education-entry h2 {
  margin: 0 0 0.5rem 0;
  font-size: 1 rem;
  color: #007acc;
}

/* Description text */
.education-entry p {
  margin: 0.2rem 0;
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

.education-entry strong {
  color: #222;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #666;
}


h1 {
  font-size: 2.6rem;
  margin-bottom: 0.2em;
}

h3 {
  font-weight: normal;
  color: #004080;
  margin-top: 0;
}

p.intro {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

h2 {
  color: #004080;
  border-bottom: 2px solid #004080;
  padding-bottom: 5px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.cert-logos {
  margin-top: 30px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.cert-logos img {
  height: 60px;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.15));
}

footer {
  text-align: center;
  padding: 20px 10px;
  background: #f1f1f1;
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 900px) {
  .main-wrapper {
    width: 95%;
    padding: 10px;
  }

  table.home-layout {
    display: block;
  }

  td.image-cell,
  td.content-cell {
    display: block;
    width: 100%;
  }

  td.image-cell img {
    border-radius: 15px;
    height: auto;
  }

  .cert-logos {
    justify-content: center;
  }
}

#technical-skills {
  padding: 20px;
}

#technical-skills h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  border-bottom: 2px solid #444;
  padding-bottom: 4px;
}

.skill-category {
  margin-bottom: 20px;
}

.skill-category h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #333;
}

.skill-category ul {
  list-style-type: disc;
  margin-left: 20px;
  line-height: 1.6;
}

.personal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.personal-row.reverse {
  flex-direction: row-reverse;
}

.personal-row .text {
  flex: 1;
  min-width: 280px;
}

.personal-row .image {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.personal-row .image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}