/* style.css */

/* General Styles */
   
body {
       font-family: Arial, sans-serif;
       margin: 0;
       padding: 0;
       background-color: #f9f9f9;
   }
   
   .container {
       max-width: 1200px;
       margin: 0 auto;
       padding: 0 20px;
   }
   
   

   
   /* Navigation Bar */
   .nav {
       background-color: #333;
       color: #fff;
       text-align: center;
       padding: 1rem;
       /* position: fixed; */
       width: 100%;
   }
   
   .nav ul {
       list-style: none;
       padding: 0;
   }
   
   .nav ul li {
       display: inline-block;
       margin-right: 1rem;
   }
   
   .nav ul li a {
       text-decoration: none;
       color: #fff;
   }
   
   /* Welcome Section */
   #welcome-section {
       text-align: center;
       padding: 3rem 0;
       background-color: #f5f5f5;
   }
   
   #welcome-section h1 {
       font-size: 2.5rem;
       margin-bottom: 1rem;
   }
   
   .role {
       font-style: italic;
       color: #777;
   }
   
   /* Experience Section */
   #experience {
    text-align: center;
    padding: 3rem 0;
    background-color: #f5f5f5;
}

#experience h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
#experience h2 {
    /* font-size: 2rem; */
    margin-bottom: 1rem;
    color: #000000;
}
#experience h3 {
    /* font-size: 2rem; */
    margin-bottom: 1rem;
    color: #000000;
}
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    
}
.experience-grid ul li{
    font-size: medium;
    font-weight: 700;
    text-align: left;
    
}
.experience_role {
    /* font-style: italic;   */
    color: #000000;
}


   /* Projects Section */
   .project-section {
       padding: 3rem 0;
   }
   
   .projects-section-header {
       text-align: center;
       font-size: 1.8rem;
       margin-bottom: 2rem;
   }
   
   .projects-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
       gap: 1rem;
   }
   
   .project {
       display: block;
       text-align: center;
       background-color: #fff;
       padding: 1rem;
       border-radius: 5px;
       box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
       transition: transform 0.2s ease;
   }
   
   .project:hover {
       transform: translateY(-5px);
   }
   
   .project-image {
       max-width: 100%;
       height: auto;
       border-radius: 5px;
   }
   
   .project-title {
       font-size: 1.2rem;
       margin-top: 1rem;
   }
   

.project-section {
       padding: 3rem 0;
   }
   
   .projects-section-header {
       text-align: center;
       font-size: 1.8rem;
       margin-bottom: 2rem;
   }
   
   .projects-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
       gap: 1rem;
   }
   
   .project {
       display: block;
       text-align: center;
       background-color: #fff;
       padding: 1rem;
       border-radius: 5px;
       box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
       transition: transform 0.2s ease;
   }
   
   .project:hover {
       transform: translateY(-5px);
   }
   
   .project-image {
       max-width: 100%;
       height: auto;
       border-radius: 5px;
   }
   
   .project-title {
       font-size: 1.2rem;
       margin-top: 1rem;
   }
   


   /* skills section */
   .skills-section {
    padding: 3rem 0;
}

.skills-section-header {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.skill {
    display: block;
    text-align: center;
    background-color: #fff;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.skill:hover {
    transform: translateY(-5px);
}

.skill-image {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.skill-title {
    font-size: 1.2rem;
    margin-top: 1rem;
}

   /* Contact Section */
   #contact {
       text-align: center;
       padding: 2rem 0;
       background-color: #333;
       color: #fff;
   }
   
   #contact ul {
       list-style: none;
       padding: 0;
   }
   
   #contact ul li {
       margin-bottom: 1rem;
   }
   
   #contact ul li a {
       text-decoration: none;
       color: #fff;
   }
   
   