
body {
      font-family: 'Inter', sans-serif;
      background-color: rgb(230, 230, 216);
      padding: 0.5rem;
      margin: 0;
      color: #111;
      
    }   

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


    h2 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      text-align: centers;
    }

    
.intro-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fefefe;
    padding: 3rem 2rem;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .intro-left {
    max-width: 500px;
  }

  .intro-left h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #222;
  }

  .intro-left h3 {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 0.5rem;
  }

  .intro-left .exp {
    font-weight: bold;
    color: #444;
    margin-bottom: 0.8rem;
  }

  .intro-left .bio {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .contact-button {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.2rem;
    background-color: #f0f4f2;
    border-radius: 6px;
    text-decoration: none;
    color: #111;
    font-weight: 500;
    transition: background 0.3s ease;
  }

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

  .email-icon {
    width: 18px;
    height: 18px;
    margin-right: 0.5rem;
  }

  .intro-right .intro-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #ffe27a;
  }
  
    .tabs {
      display: flex;
      gap: 1rem;
      border-bottom: 1px solid #e0e0e0;
      padding-bottom: 0.5rem;
      margin-bottom: 1.5rem;
    }

    .tab {
      padding: 0.4rem 0.9rem;
      background: transparent;
      border: none;
      font-size: 0.95rem;
      cursor: pointer;
      border-radius: 6px;
      transition: background 0.2s;
      color: #555;
    }

    .tab:hover {
      background: #f3f3f3;
    }

    .tab.active {
      background: #3a3535;
      color: #fff;
    }

    .tab-content {
      display: none;
      flex-wrap: wrap;
      gap: 0.75rem;
    }

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

    .skill {
      padding: 0.5rem 1rem;
      background: #fafafa;
      border: 1px solid #a89b9b;
      border-radius: 8px;  
      font-size: 0.9rem;
      transition: all 0.2s ease;
      cursor: default;
    }

    .skill:hover {
      border-color: #ccc;
      background: #f0f0f0;
    }

      li {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
  }

  .check {
    margin-right: 0.5rem;
  }

  .level {
    font-size: 0.85rem;
    font-weight: bold;
    color: rgb(102, 102, 102);
    margin-left: auto;
    margin-bottom: 0.2rem;
  }

  .bar {
    background: #eee;
    border-radius: 6px;
    height: 8px;
    overflow: hidden;
    width: 100%;
  }

  .bar > div {
    height: 100%;
    background-color: rgb(102, 102, 102); /* green-600 */
    transition: width 0.3s ease;
  }

  ul {
    margin-bottom: 1.5rem;
  }

  .dropdown-toggle {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    display: inline-block;
  }

  .skill-dropdown {
    display: none;
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
  }

  .skill-dropdown.open {
    display: block;
  }

  .tick-image{
    width: 5%;
    height: 5%;
  }

 .contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
  text-align: center;
}

.contact-icons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.contact-icons img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.contact-icons img:hover {
  transform: scale(1.1);
}

.education-section {
  max-width: 700px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.education-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.5rem;
}

.education-entry {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
}

.degree-info {
  flex: 1;
}

.degree-title {
  font-weight: bold;
  color: #222;
}

.university-name {
  color: #555;
  font-size: 0.9rem;
}

.education-meta .year {
  color: #666;
  font-size: 0.9rem;
}


.projects-section {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.projects-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.project-group {
  margin-bottom: 2rem;
}

.project-group h3 {
  margin-bottom: 1rem;
  color: #333;
}

.project-card {
  background: #fff;
  border: 1px solid #ddd;
  border-left: 5px solid #3a3535;
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-header h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #111;
}

.project-header a {
  font-size: 0.9rem;
  color: #0077cc;
  text-decoration: none;
}

.project-header a:hover {
  text-decoration: underline;
}

.project-card p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  color: #444;
}

.project-card .role,
.project-card .date {
  display: inline-block;
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.3rem;
  margin-right: 1rem;
}

.quote-container {
  margin-top: 2rem;
  font-style: italic;
  font-size: 1rem;
  text-align: center;
  color: #444;
}
