/* General Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f8f8;
    color: #333;
  }
  
  header {
    background-color: #333;
    padding: 20px 0;
  }
  
  nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
  }
  
  nav ul li {
    margin: 0 15px;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
  }
  
  nav ul li a:hover {
    color: #3498db;
  }
  
  /* Hero Section */
  .hero {
    text-align: center;
    padding: 60px 20px;
    background-color: #fff;
  }
  
  .hero img {
    width: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    color: #333;
  }
  
  .hero p {
    font-size: 1.2rem;
    color: #555;
  }
  
  /* About Section */
  .about, .projects, .skills, .contact, .resume {
    padding: 40px 20px;
    text-align: center;
  }
  
  h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
  }
  
  /* Project Cards */
  .project-card {
    display: inline-block;
    width: 30%;
    margin: 20px;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .project-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
  }
  
  .project-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .project-card p {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .project-card a {
    color: #3498db;
    text-decoration: none;
  }
  
  .project-card a:hover {
    text-decoration: underline;
  }
  
  /* Skills Section */
  .skill {
    margin: 20px 0;
  }
  
  .progress-bar {
    width: 80%;
    background-color: #ddd;
    border-radius: 10px;
    margin: 10px auto;
    height: 8px;
  }
  
  .progress {
    height: 100%;
    background-color: #3498db;
    border-radius: 10px;
  }
  
  .skill h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .skill p {
    font-size: 1rem;
  }
  
  /* Contact Form */
  form input, form textarea, form button {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  form input, form textarea {
    font-size: 1rem;
  }
  
  form button {
    background-color: #3498db;
    color: white;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  form button:hover {
    background-color: #2980b9;
  }
  
  form button:disabled {
    background-color: #7f8c8d;
    cursor: not-allowed;
  }
  
  a {
    color: #3498db;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Footer */
  footer {
    text-align: center;
    background-color: #333;
    color: white;
    padding: 20px 0;
  }
  
  footer p {
    font-size: 1rem;
  }
  
  /* Media Queries for Responsive Design */
  @media (max-width: 768px) {
    .project-card {
      width: 70%;
    }
  }
  
  @media (max-width: 480px) {
    .project-card {
      width: 100%;
    }
  
    .hero h1 {
      font-size: 2rem;
    }
  
    .hero p {
      font-size: 1rem;
    }
  
    .about, .projects, .skills, .contact, .resume {
      padding: 20px;
    }
  
    .skill h3, .project-card h3 {
      font-size: 1.2rem;
    }
  }
  