body {
  margin: 0;
  font-family: 'Montserrat', 'Poppins', sans-serif;
  background-color: black;
  color: #fff;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.logo .highlight {
  color: #f1c40f;
}

.nav-links li {
  display: inline-block;
  margin-left: 2rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #f1c40f;
}

.container-left {
    color: white;
    width: 300px;  /* Box width */
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 20px;
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center;    /* Center content horizontally */
    margin-left: 20px;
}

.pb {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
}

.pb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 10px 0;
    text-align: center;
}

.profile-role {
    background-color: #2c2c2c;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 0.9rem;
    color: white;
    text-align: center;
}

.profile-info {
    width: 100%;
    margin-top: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    background-color: #2c2c2c;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.info-item i {
    margin-right: 10px;
    color: #f1c40f;
}

.info-item span {
    color: white;
    font-size: 0.9rem;
}

.about-section {
    display: flex;
    justify-content: center; /* Center the whole section */
    align-items: flex-start; /* Align top edges */
    gap: 30px; /* Space between profile and about me */
    padding: 30px;
}

.about-me {
    margin-top: 100px;
    max-width: 800px;
    flex: 1;
}


.about-me h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
}

.about-me h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background-color: #f1c40f;
    margin-top: 5px;
    border-radius: 2px;
}

.about-me p {
    color: #d3d3d3;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 15px;
}
