  #intro {
    justify-content: center;
    position: relative;
  }
  
  .intro-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
  
  .intro-pic img {
    max-width: 100%;
    border-radius: 15px;
  }
  
  .intro-text {
    flex: 2;
  }
  
  .title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-family: 'Audiowide', sans-serif;
    color: #ff4500;
    font-size: 2rem;
    text-shadow: 0 0 5px rgba(255, 69, 0, 0.7);
  }
  
  .what-i-do-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 5rem;
  }
  
  .service-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 2px solid #f5a623;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 1.5rem;
    width: 100%;
    max-width: 800px;
  }
  
  .service-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
  }
  
  .subtitle {
    font-family: 'Audiowide', sans-serif;
    color: #ff4500;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: none;
  }
  
  .skills-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  .skill-icon {
    position: relative;
    width: 40px;
    height: 40px;
  }
  
  .skill-icon img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s;
  }
  
  .skill-icon:hover img {
    transform: scale(1.2);
    cursor: default;
  }

  .skill-icon {
  position: relative;
}

.skill-name {
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a2e;
  color: #ff4500;
  border: 2px solid #f5a623;
  text-shadow: 0 0 5px rgba(255, 69, 0, 0.7);
  padding: 0.5rem;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  font-size: 0.875rem;
  z-index: 100;
}

.skill-icon:hover .skill-name {
  opacity: 1;
}
  
  button {
    font-family: 'Audiowide', sans-serif;
    background: none;
    border: 2px solid #ff4500;
    color: #ff4500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: block;
    margin: 2rem auto; 
    text-shadow: 0 0 5px rgba(255, 69, 0, 0.7);
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.8);
  }
  
  button:hover {
    background-color: #ff4500;
    color: #1a1a2e;
  }

  .soft-skills-container {
    text-align: center;
    padding-bottom: 1rem;
    margin-top: 5rem;
  }
  
  .soft-skills-text {
    margin-bottom: 2rem;
  }
  
  .skills-list {
    list-style: none;
    padding: 0;
    font-family: 'Audiowide', sans-serif;
    color: #f5a623;
    font-size: 1.25rem;
    line-height: 2;
  }
  
  .skills-list .emoji {
    margin-right: 0.5rem;
  }
  
  .soft-skills-pic img {
    max-width: 100%;
    border-radius: 15px;
  }
  

@media screen and (max-width: 768px) {
  .intro-container {
      flex-direction: column;
      align-items: center;
      display: flex;
      gap: 0;
      text-align: center;
      flex-wrap: wrap;
    }

    .intro-text {
      flex: 1;
      margin-left: 0;
      text-align: center;
      width: 100%;
    }

    .section-title {
      font-size: 1.75rem;
    }
  
    .service-section {
      padding: 1rem;
      flex-wrap: wrap;
    }
  
    .subtitle {
      font-size: 1.25rem;
    }
  
    .skills-icons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }
  
    .skill-icon {
      width: 30px;
      height: 30px;
    }
  
    .skill-icon img {
      width: 100%;
      height: 100%;
    }
  
    .skill-name {
      bottom: -35px;
      font-size: 0.75rem; 
      padding: 0.25rem; 
      z-index: 100;
    }
  
    .services-list {
      font-size: 0.875rem;
    }
  
    .soft-skills-container{
      margin-top: 3rem;
      flex-wrap: wrap;
    }

    .soft-skills-text {
      margin-bottom: 1rem;
    }
  
    .skills-list {
      font-size: 1rem;
    }
  
    .skills-list .emoji {
      margin-right: 0.25rem;
    }
  
    .soft-skills-pic img {
      border-radius: 10px;
    }
}