/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #ffffff;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* About Me Section */
  .about-me {
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  }
  
  .about-me h2 {
    font-size: 2rem;
    color: #d5d5d5;
    text-shadow: 0 0 5px #c1c1c1;
  }
  
  /* Skills Section */
  .skills {
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
  }
  
  .skills h2 {
    color: #01c2ff;
    text-shadow: 0 0 5px #5693d3,
  }
  
  .skill-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }
  
  .skill {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, background-color 0.3s;
  }
  
  .skill:hover {
    background: #6a11cb;
    transform: scale(1.1);
  }
  
  .skill i {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .skill p {
    margin-top: 10px;
    color: #19b6db;
    font-weight: bold;
  }
  
  /* Work Experience Section */
  .work-experience {
    max-width: 800px;
    margin: 40px auto;
  }
  
  .work-experience h2 {
    text-align: center;
    color: #01c2ff;
    text-shadow: 0 0 5px #5693d3;
  }
  
  .company-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
  }
  
  .company-card img {
    max-width: 100px;
    margin: 10px auto;
  }
  
  .company-card h3 {
    margin-top: 10px;
    font-size: 1.5rem;
    color: #d5d5d5;
    text-shadow: 0 0 5px #c1c1c1;  }
  
  .company-card p {
    margin: 10px 0;
  }
  
  .company-card .view-details {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    background: #2d4ec7;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
  }
  
  .company-card .view-details:hover {
    background: #2575fc;
    transform: scale(1.1);
  }
  
  /* Projects Section */
  .projects {
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
  }
  
  .projects h2 {
    color: #01c2ff;
    text-shadow: 0 0 5px #5693d3,
  }
  
  .project-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
  }
  
  .project-card h3 {
    font-size: 1.5rem;
    color: #d5d5d5;
    text-shadow: 0 0 5px #c1c1c1;  }
  
  .project-card p {
    margin: 10px 0;
  }
  
  .project-card .view-project {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    background: #2d4ec7;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
  }
  
  .project-card .view-project:hover {
    background: #2575fc;
    transform: scale(1.1);
  }
  
  /* Social Media Section */
  .social-media {
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
  }
  
  .social-media h2 {
    color: #01c2ff;
    text-shadow: 0 0 5px #5693d3,
  }
  
  .social-links a {
    margin: 0 15px;
    font-size: 2rem;
    color: white;
    transition: color 0.3s;
  }
  
  .social-links a:hover {
    color: #f7e018;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 20px;
    background-color: #121212;
    color: white;
  }
  