/* General Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #1e1e2f;
  color: #f1f1f1;
  line-height: 1.6;
  scroll-behavior: smooth;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  padding: 20px 0;
}

/* Header */
header {
  background-color: #292945;
  padding: 20px 0;
  border-bottom: 4px solid #5bc0eb;
}

header h1 {
  text-align: center;
  font-size: 2rem;
  color: #ffffff;
}

nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}

nav a {
  color: #5bc0eb;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #9ae3ff;
}

/* Section Titles */
section h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #5bc0eb;
  border-bottom: 2px solid #5bc0eb;
  padding-bottom: 5px;
}

/* Jobs & Projects */
.job, #projects h3 {
  margin-top: 20px;
}

.job h3, #projects h3 {
  color: #ffffff;
  margin-bottom: 5px;
}

.company, .dates {
  font-style: italic;
  color: #bbbbbb;
  margin-bottom: 5px;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}

/* Certifications */
.cert-list {
  list-style: none;
  padding-left: 0;
}

.cert-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.cert-icon {
  max-width: 40px;
  max-height: 40px;
  width: auto;
  height: auto;
  margin-right: 10px;
  border-radius: 6px;
  background-color: #ffffff;
  object-fit: contain;
}


/* Contact Form */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

input, textarea, button {
  padding: 10px;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
}

input, textarea {
  background-color: #2e2e3e;
  color: #f1f1f1;
}

input:focus, textarea:focus {
  outline: 2px solid #5bc0eb;
}

button {
  background-color: #5bc0eb;
  color: #000;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

button:hover {
  background-color: #78d4f9;
}

/* Footer */
footer {
  background-color: #292945;
  text-align: center;
  padding: 15px 0;
  color: #bbbbbb;
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: center;
  }

  .cert-icon {
    width: 30px;
    height: 30px;
  }
}
