
/* ===== Global Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #f4f6f8;
  color: #333;
  line-height: 1.6;
}

/* ===== Layout ===== */
.container {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  background-color: #1e2a38;
  color: #fff;
  width: 500px;
  padding: 2rem 1.5rem;
}

.main-content {
  flex: 1;
  padding: 2rem 3rem;
}

/* ===== Sidebar ===== */
.profile {
  text-align: center;
  margin-bottom: 2rem;
}

.profile img {
  border-radius: 100%;
  width: 75px;
  height: 100px;
  margin-bottom: 1rem;
  border: 5px solid #4fc3f7;
}

.profile h1 {
  font-size: 1.6rem;
}

.profile p {
  color: #b0bec5;
}

.sidebar h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #4fc3f7;
  padding-bottom: 0.3rem;
}

.sidebar ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.sidebar li {
  margin-bottom: 0.5rem;
  color: #cfd8dc;
}

/* ===== align ul list ===== */

.job ul {
  margin-left: 1.5rem; 
  padding-left: 0;     
  list-style-type: disc;
}

/* ===== Main Content ===== */
.main-content h2 {
  color: #1e2a38;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid #4fc3f7;
  display: inline-block;
  padding-bottom: 0.2rem;
}

section {
  margin-bottom: 2rem;
}

.job, .edu-item {
  margin-bottom: 1.5rem;
}

.company, .school {
  display: block;
  color: #607d8b;
  font-style: italic;
  margin-bottom: 0.3rem;
}

.progress-bar {
  width: 100%;
  height: 15px;
  background-color: #eee;
  border-radius: 10px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background-color: #4fc3f7;
  border-radius: 10px;
  width: 0;
  transition: width 0.6s ease;
}


/* ===== Responsive ===== */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    text-align: center;
  }

  .main-content {
    padding: 1.5rem;
  }
}

