* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  background-color: #e1e3e6;
}

#greeting {
  display: inline-block;
  margin-right: 6px;
  font-weight: 500;
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
}

/* Fade + slight lift + blur */
.greeting-out {
  opacity: 0;
  transform: translateY(-6px);
  filter: blur(6px);
}

/* Smooth re-entry */
.greeting-in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

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

a:hover {
  text-decoration: underline;
}

/* Header & Navigation */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
}

.site-title {
  font-size: 28px;
  font-weight: 600;
  color: #0366d6;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: #333;
  font-size: 16px;
  padding-bottom: 5px;
}

nav a.active {
  color: #0366d6;
  border-bottom: 2px solid #0366d6;
}

/* Divider */
.divider {
  height: 1px;
  background-color: #eee;
  margin: 10px 0 40px 0;
}

/* Main Content */
.main-content {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}

.info {
  flex: 3;
}

.job-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.bio p {
  margin-bottom: 20px;
  text-align: justify;
  text-justify: inter-word;
}

.profile-image {
  flex: 1;
  margin-left: 20px;
}

.profile-image img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  padding: 0.5rem;
}

/* Tab Content */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Projects, Experience, Achievements, Skills Sections */
.section-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #111;
}

.project-card,
.experience-card,
.achievement-card {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.project-card:last-child,
.experience-card:last-child,
.achievement-card:last-child {
  border-bottom: none;
}

.project-title,
.experience-title,
.achievement-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.project-tech,
.experience-duration {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.project-desc,
.experience-desc,
.achievement-desc {
  margin-bottom: 15px;
}

.project-link {
  display: inline-block;
  margin-right: 15px;
}

/* Skills Section */
.skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.skill-tag {
  background-color: #f1f8ff;
  border: 1px solid #c8e1ff;
  border-radius: 20px;
  padding: 5px 15px;
  font-size: 14px;
  color: #0366d6;
}

/* Footer */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  margin-top: 60px;
}

.copyright {
  font-size: 14px;
  color: #666;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: #333;
}

.resume-link {
  margin-left: 15px;
}

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

  .profile-image {
    margin: 0 auto 30px;
    text-align: center;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  nav {
    flex-wrap: wrap;
  }

  footer {
    flex-direction: column;
    gap: 20px;
  }

  .social-links {
    margin-top: 10px;
  }

  .project-title,
  .experience-title {
    flex-direction: column;
  }
}

.heading-image {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between !important;
}
.name-desc {
  font-size: medium;
  font-weight: normal;
  margin-top: 1rem;
  padding-bottom: 2rem;
  text-align: justify;
}
