/*
+++++++++++++++++++++++++++++++++++++

This is for skill section in portfolio.

+++++++++++++++++++++++++++++++++++++
*/
.skills-section {
    font-family: 'DM Sans', sans-serif;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 10px;
    width: 80%;
    margin: auto;
  }
  
  .section-heading h2 {
    text-align: center;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #333;
  }
  
  .skill-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .skill {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .skill-title {
    width: 25%;
    font-weight: bold;
    color: #09d0d0;
  }
  
  .progress-bar {
    flex-grow: 1;
    background: #e6ecf3;
    height: 10px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
  }
  
  .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #09d0d0, #7a85d4);
    border-radius: 5px;
    transition: width 1.5s ease-in-out;
  }
  
  .percentage {
    font-weight: bold;
    color: #535da1;
  }
  /*
  ++++++++++++++++++++++++++++++++++++++++++++++++

  this is for education.

  ++++++++++++++++++++++++++++++++++++++++++++++++
  */

 
.timeline-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 20px;
}
.timeline {
    display: flex;
    align-items: center;
    overflow-x: auto;
}
.timeline-item {
    flex: 0 0 auto;
    position: relative;
    margin: 20px;
    width: 330px;
    height: 370px;
    text-align: center;
    background-color: #ffffff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.timeline-item h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #333;
}
.timeline-item p {
    font-size: 0.9rem;
    color: #666;
}
.connector {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.line {
    height: 4px;
    width: 100%;
    background-color: #ddd;
    position: absolute;
    z-index: -1;
}
.dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #7a85d4;
    border: 3px solid #ffffff;
    position: relative;
    z-index: 1;
}