body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
  }
  
  header {
    background-color: #2c3e50;
    color: white;
    padding: 2rem 1rem;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  
  .dev-title {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.2rem;
    background-color: #1e1e1e;
    color: #00ff99;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    display: inline-block;
  }
  
  nav {
    margin-top: 1rem;
  }
  
  nav a {
    color: white;
    margin: 0 1rem;
    text-decoration: none;
    font-weight: bold;
  }
  
  nav a:hover {
    text-decoration: underline;
  }
  
  main {
    padding: 2rem 1rem;
    max-width: 900px;
    margin: auto;
  }
  
  .profile {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  
  .profile img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .skills-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    margin-top: 1.5rem;
  }
  
  .skills-box p {
    margin: 0.5rem 0;
  }
  
  .project {
    background-color: white;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
  }
  
  .project:hover {
    transform: translateY(-4px);
  }
  
  .project img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    display: block;
  }
  
  h1,
  h2,
  h3 {
    margin-bottom: 0.5rem;
  }
  
  section#contact a {
    color: #2c3e50;
    text-decoration: none;
  }
  
  section#contact a:hover {
    text-decoration: underline;
  }
  
  footer {
    background-color: #ddd;
    text-align: center;
    padding: 1rem;
    margin-top: 3rem;
    font-size: 0.9rem;
  }
  
  section {
    scroll-margin-top: 240px;
  }
  
  
  @media (max-width: 600px) {
    body {
      padding: 1rem;
    }
  
    header {
      padding: 1rem;
    }
  
    .profile {
      flex-direction: column;
      text-align: center;
    }
  
    .profile img {
      width: 120px;
      height: 120px;
    }
  
    .skills-box {
      padding: 0.75rem;
    }
  
    .project {
      margin-bottom: 1rem;
    }
  
    nav {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    nav a {
      margin: 0.5rem 0;
    }
  
    main {
      padding: 1rem;
    }
  }
  
 
  @media (max-width: 1024px) {
    .profile {
      flex-direction: row;
      justify-content: center;
    }
  
    .profile img {
      width: 130px;
      height: 130px;
    }
  
    .skills-box {
      padding: 1rem;
    }
  
    nav {
      justify-content: center;
    }
  
    nav a {
      margin: 0 1rem;
    }
  
    main {
      padding: 1.5rem;
    }
  }
  
  @media (min-width: 1200px) {
    main {
      padding: 3rem;
    }
  }
  
  .experience,
  .education {
    background-color: white;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  }
  
  .experience h3,
  .education h3 {
    margin: 0.5rem 0;
  }
  
  .experience p,
  .education p {
    margin: 0.25rem 0;
  }
  
  section#contact a i {
    transition: transform 0.2s ease, color 0.2s ease;
  }
  
  section#contact a:hover i {
    transform: scale(1.2);
    color: #0077b5; 
  }
  
  section#contact p {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem; 
    margin-top: 1rem;
  }
  
  .highlight-link {
    color: #e74c3c;
    font-weight: bold;
    text-decoration: none;
    background-color: #ffe9e7;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    transition: background-color 0.2s ease, transform 0.2s ease;
  }
  
  .highlight-link:hover {
    background-color: #ffdad4;
    transform: scale(1.05);
    text-decoration: underline;
  }