* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background-color: #f5f5f5;
  color: #000;
  line-height: 1.6;
}

/* Added horizontal navbar styles with minimalist theme */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 60px;
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
}

.logo {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-size: 0.95rem;
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 0.5;
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background-color: #fff;
}

.name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 400;
  text-align: center;
}

.profile-img {
  width: 30%;
  height: auto;
  margin-bottom: -50px;
  position: relative;
  z-index: 1;
}

.portfolio-title {
  font-size: 5rem;
  font-weight: 900;
}

.subtitle {
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.cta-button {
  padding: 15px 40px;
  background-color: #f0f0f0;
  border: none;
  font-size: 0.9rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #e0e0e0;
}

/* About Section */
.about {
  padding: 80px 60px;
  background-color: #fff;
}

.section-number {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}

.section-title {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
}

.about-img {
  width: 400px;
  height: auto;
}

.bio-section {
  display: flex;
  justify-content: center;
    gap:20%;

}

.bio-text {

  font-size: 1rem;
  line-height: 1.8;
  width:50%;

}

.section-title{
    margin-left:10%;
}
.workspace-img {
  width: 300px;
  height: auto;
}

/* Work Experience Section */
.work-experience {
  padding: 80px 60px;
  background-color: #f5f5f5;
}

.experience-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-top: 60px;
}

.work-img {
  width: 350px;
  height: auto;
  filter: blur(2px);
}

.experience-columns {
  display: flex;
  gap: 80px;
  flex: 1;
}

.experience-column {
  flex: 1;
}

.experience-column h3 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 30px;
  font-family: Georgia, serif;
}

.job {
  margin-bottom: 30px;
}

.company {
  font-weight: 600;
  margin-bottom: 5px;
}

.role {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .name {
    font-size: 2.5rem;
  }

  .portfolio-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .content-wrapper,
  .bio-section,
  .experience-wrapper,
  .experience-columns {
    flex-direction: column;
  }

  .about-img,
  .workspace-img,
  .work-img {
    width: 100%;
    max-width: 400px;
  }
}

/* Experience Table */
.experience-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 60px;
  background-color: #fff;
  font-size: 0.95rem;
}

.experience-table thead th {
  text-align: left;
  font-weight: 400;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  padding: 16px 12px;
  border-bottom: 1px solid #e0e0e0;
}

.experience-table tbody td {
  padding: 18px 12px;
  vertical-align: top;
  border-bottom: 1px solid #eaeaea;
  line-height: 1.7;
}

/* Column emphasis */
.experience-table tbody td:first-child {
  font-weight: 600;
  max-width: 260px;
}

.experience-table tbody td:nth-child(2) {
  color: #555;
  white-space: nowrap;
}

/* Subtle hover (very minimal) */
.experience-table tbody tr:hover {
  background-color: #fafafa;
}

/* Responsive: stack table on mobile */
@media (max-width: 768px) {
  .experience-table thead {
    display: none;
  }

  .experience-table,
  .experience-table tbody,
  .experience-table tr,
  .experience-table td {
    display: block;
    width: 100%;
  }

  .experience-table tr {
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
  }

  .experience-table td {
    padding: 10px 0;
  }

  .experience-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 4px;
  }
}
/* Adding footer styles with minimalist theme */
.footer {
  background-color: #000;
  color: #fff;
  padding: 60px 60px 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 40px;
  max-width: 1200px;
}

.footer-section h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.contact-item {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #e0e0e0;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 0.6;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-links a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.3s;
}

.social-links a:hover {
  opacity: 0.6;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid #333;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #888;
}


/* Contact Section */
.contact {
  padding: 80px 60px;
  background-color: #fff;
}

.contact-wrapper {
  margin-top: 60px;
}

.contact-content {
  display: flex;
  gap: 80px;
  margin-top: 40px;
  max-width: 1200px;
}

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  border: none;
  border-bottom: 1px solid #000;
  padding: 12px 4px;
  font-size: 0.95rem;
  background-color: transparent;
  outline: none;
  font-family: inherit;
}

.contact-form textarea {
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888;
}

.contact-form button {
  margin-top: 20px;
  align-self: flex-start;
  padding: 14px 40px;
  background-color: #f0f0f0;
  border: none;
  font-size: 0.85rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #e0e0e0;
}

/* Contact Info */
.contact-info {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.8;
}

.contact-details {
  margin-top: 30px;
}

.contact-details p {
  margin-bottom: 20px;
}

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


/* Projects Section */
.projects {
  padding: 80px 60px;
  background-color: #f5f5f5;
}

.projects-wrapper {
  margin-top: 60px;
}

.project {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.project-img {
  width: 400px;
  height: auto;
  border-radius: 20px;
}

.project-content {
  max-width: 500px;
}

.project-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 20px;
}

.project-description {
  font-size: 1.4rem;
  line-height: 1.8;
}

/* Alternate layout for even projects */
.project:nth-child(even) {
  flex-direction: row-reverse;
}

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

  .project-img {
    width: 100%;
    max-width: 400px;
  }
}
