/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f9fc;
    color: #333;
  }
  
  /* Resume Container */
  .resume-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    min-height: 100vh;
  }
  
  /* Profile Section */
  .profile-section {
    text-align: center;
    margin-top: 50px;
  }
  
  .profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
  }
  
  .profile-section h1 {
    font-size: 36px;
    margin: 10px 0;
  }
  
  .profile-section h3 {
    font-size: 20px;
  }
  
  .profile-section p {
    font-size: 16px;
  }
  
  a {
    text-decoration: none;
    color: #2575fc;
  }
  
  /* Content Section */
  .content-section {
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    border-radius: 10px;
    background: linear-gradient(to bottom right, #df0cd1, #1e3255);
    color: #fff;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
  }
  
  .about-me h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #ffdd99;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
  }
  
  .about-me p {
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  .highlight {
    color: #ffdd99;
    font-weight: bold;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
  }
  
  .highlight:hover {
    color: #ffe6cc;
    transform: scale(1.1);
  }
  
  .content-section:hover {
    background: linear-gradient(to bottom right, #df0cd1c5, #1e3255c0);
    transition: background 0.4s ease;
  }
  
  /* Skills Section */

  .skills-container {
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
    background: linear-gradient(to bottom right, #df0cd1, #1e3255);
    color: #333;
    text-align: center;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .skills-container:hover{
    background: linear-gradient(to bottom right, #df0cd1c5, #1e3255c0);
    transition: background 0.4s ease;
  }
  
  .skills-container h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #ffdd99;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
  }
  
  #skills-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  #skills-list li {
    margin: 5px 10px;
    padding: 8px 15px;
    border-radius: 20px;
    background-color: #fff;
    color: #333;
    font-weight: bold;
    font-size: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  #skills-list li:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
  }
  
  .hidden-skill {
    display: none;
  }
  
  #toggle-button {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    background-color: #df0cd1c5;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  #toggle-button:hover {
    background-color: #7c0b75;
    transform: scale(1.05);
  }
  
  /* Links Section */
  .professional_links {
    list-style: none;
    padding: 0;
  }
  
  .professional_links li {
    display: inline-block;
    margin: 0 15px;
  }
  
  .professional_links img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
  }
  
  .professional_links img:hover {
    transform: scale(1.2);
  }
  