/* Reset & base layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #222;
  line-height: 1.6;
}

header {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
  border-bottom: 4px solid #00bcd4;
}

header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

header h2 {
  font-size: 1.2rem;
  font-weight: 400;
  color: #ccc;
}

main {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 30px;
}

/* Section styling */


.resume-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  margin-top:10px;
  color: #111;
  border-left: 5px solid #00bcd4;
  padding-left: 12px;
}

/* Ventures Grid */
.ventures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.venture-card {
  background-color: #fff;
  border-left: 5px solid #00bcd4;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.venture-card:hover {
  transform: translateY(-5px);
}

.venture-card h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.venture-card p {
  font-size: 0.95rem;
  color: #444;
  margin-top: 6px;
}

/* Job entries */
.job-entry {
  background-color: #fff;
  border-left: 4px solid #00bcd4;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.job-entry h3 {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 6px;
}

.job-entry p {
  margin-top: 8px;
  color: #444;
}

.job-entry ul {
  padding-left: 18px;
  color: #444;
}

/* Footer */
footer {
  background-color: #111;
  color: #ccc;
  padding: 50px 30px 20px;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  text-align: left;
}

.footer-column {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h3 {
  font-size: 1.6rem;
  color: white;
}

.footer-message {
  font-style: italic;
  color: #aaa;
}

.footer-column a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.85rem;
  color: #777;
}
.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
}

.skills-column {
  flex: 1;
  min-width: 280px;
  background-color: #fff;
  padding: 20px;
  border-left: 5px solid #00bcd4;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.skills-column h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  color: #111;
}

.skills-column ul {
  list-style: disc;
  padding-left: 18px;
}

.skills-column li {
  margin-bottom: 10px;
  color: #444;
}
.job-sort-tabs {
  max-width: 100%;
  flex-wrap: wrap;
}
nav {
  margin-top: 20px;
}

.nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.nav-list li a {
  text-decoration: none;
  color: #ccc;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.nav-list li a:hover {
  color: white;
}
