/* Base setup */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f6f8;
    color: #333;
    line-height: 1.6;
  }
  
  /* Header styling */
  .main-header {
    background-color: #2c3e50;
    color: white;
    padding: 40px 20px;
    text-align: center;
  }
  
  .main-header h1 {
    margin: 0;
    font-size: 2.5rem;
  }
  
  .main-header .tagline {
    font-size: 1.2rem;
    margin-top: 5px;
    color: #ccc;
  }
  
  .main-header .contact p {
    margin: 5px 0;
    font-size: 0.95rem;
  }
  
  .main-header a {
    color: #1abc9c;
    text-decoration: none;
  }
  
  .main-header i {
    margin-right: 8px;
  }
  
  /* Container */
  .container {
    max-width: 900px;
    margin: 30px auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
  }
  
  /* Section headers */
  h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    border-left: 5px solid #3498db;
    padding-left: 10px;
    margin-top: 40px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  /* Lists */
  ul {
    padding-left: 20px;
  }
  
  ul li {
    margin-bottom: 12px;
  }
  
  /* Project styling */
  .project {
    margin-bottom: 25px;
  }
  
  .project h3 {
    margin: 0 0 6px;
    font-size: 1.2rem;
    color: #34495e;
  }
  
  .button {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 14px;
    font-size: 0.95rem;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
  }
  
  .button:hover {
    background-color: #2980b9;
  }
  
  .button i {
    margin-right: 6px;
  }
  
  /* Skills as badges */
  .skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-left: 0;
    list-style: none;
  }
  
  .skills li {
    background: #ecf0f1;
    color: #2c3e50;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.95rem;
  }
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .header-content .info {
    flex: 1;
    text-align: left;
  }
  
  .profile-pic {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  }
  
  .profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
    
