/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f4f8;
    color: #2c3e50;
    line-height: 1.6;
    padding: 0;
  }
  
  h1, h2 {
    font-family: 'Roboto', sans-serif;
    color: #34495e;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  ul {
    list-style-type: none;
  }
  
  header {
    background-color: #1abc9c;
    padding: 1rem 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  
  .navbar ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
  }
  
  .navbar ul li {
    margin: 0 15px;
  }
  
  .navbar ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  .navbar ul li a:hover {
    background-color: #34495e;
  }
  

  .main-content {
    display: flex;
    justify-content: center;
    padding: 3rem 1rem;
    background-color: #3c7768;
  }
  
  .container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: #fff;
    padding: 2rem;
  }
  
  .profile {
    width: 30%;
    text-align: center;
    margin-right: 2rem;
  }
  
  .profile-picture img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #1abc9c;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .profile-picture img:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  }
  
  .social-media {
    margin-top: 1rem;
  }
  
  .social-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 1.1rem;
    color: #1abc9c;
    font-weight: bold;
    padding: 0.7rem 1.3rem;
    border: 2px solid #1abc9c;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
  }
  
  .social-link:hover {
    background-color: #1abc9c;
    color: white;
  }
  
  /* Resume Content */
  .resume-info {
    width: 70%;
  }
  
  .resume-info h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  .resume-info .headline {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    font-style: italic;
  }
  
  .info-section {
    margin-bottom: 2rem;
  }
  
  .info-section h2 {
    font-size: 1.8rem;
    border-bottom: 3px solid #1abc9c;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .info-section p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .info-section ul {
    padding-left: 1.5rem;
  }
  
  .info-section ul li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  /* Project Case Study Section */
  .project-case-study {
    background-color: #f7f7f7;
    padding: 3rem 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .project-case-study h2 {
    font-size: 2rem;
    color: #34495e;
    margin-bottom: 1rem;
  }
  
  .project-case-study p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: justify;
  }
  
  .project-case-study p:last-child {
    margin-bottom: 0;
  }
  
  footer {
    background-color: #34495e;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 3rem;
    font-size: 1rem;
  }
  
  /* Responsive Design */
  @media screen and (max-width: 768px) {
    .container {
      flex-direction: column;
      align-items: center;
    }
  
    .profile {
      width: 100%;
      margin-bottom: 2rem;
    }
  
    .resume-info {
      width: 100%;
    }
  }
  .portfolio {
    padding: 40px;
    text-align: center;
  }
  
  .portfolio-grid {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }
  
  .portfolio-item {
    background-color: #fff;
    padding: 15px;
    width: 30%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .portfolio-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .portfolio-link {
    color: #1abc9c;
    text-decoration: none;
    margin-top: 10px;
    display: block;
  }