body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px
  display: flex; /* Use flexbox to align skills and content */
  flex-wrap: wrap; /* Allow items to wrap onto the next line */

}

.header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.profile-photo {
  width: 150px;
  border-radius: 50%;
  margin-right: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.photos {
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 15px; 
  margin-bottom: 15px; 
}

.photo-gallery {
  margin-bottom: 30px;
  padding: 20px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  background-color: #ffffff;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.photo-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.photo-gallery img:hover {
  transform: scale(1.05);
}

.header-text {
  flex: 1;
}

.professional-assessment {
}

.professional-assessments {
  max-width: 900px;
  margin-bottom: 15px; 
  padding: 15px;
  border: 1px solid #e0e0e0;
  margin: 0 auto;
  width: 100%;
  border-radius: 5px;
  background-color: #ffffff;
}

.projects {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.project {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  margin-bottom: 15px; 
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background-color: #ffffff;
}

.contact-section {
  margin-top: 30px;
  text-align: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-info img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  margin-bottom: 10px;
}
.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px; 
}

.contact-info a {
  color: #0366d6;
  text-decoration: none;
  margin-bottom: 10px;
}

.contact-info a:hover {
  text-decoration: underline;
}


h1, h2, h3 {
  color: #333333;
}

p {
  color: #555555;
}

a {
  color: #0366d6;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}



.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.lightbox img {
  max-width: 80%;
  max-height: 80%;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

/* Add this CSS to your existing stylesheet */
.navbar {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333; /* Choose your background color */
}

.navbar li {
  float: left;
}

.navbar a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.navbar a:hover {
  background-color: #ddd; 
  color: black;
}

#scrollToTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #007bff; 
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 15px;
  cursor: pointer;
}

.read-more-content {
  display: none;
}

.show-content {
  display: block;
}


iframe {
  display: block;
  margin: 0 auto;
  border: none;
  border-radius: 5px;
  margin-bottom: 15px;
}
