/* css styles */
/* Dramatic change to verify CSS is working */
/* h1 {
    background: linear-gradient(90deg, #ff6b6b, #4d97ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    font-weight: bold;
    padding: 5px 0;
  } */
  
  /* Navigation hover effect */
  nav a:hover {
    color: #4d97ff;
    transition: color 0.3s ease;
  }
  
  /* Skills section spacing */
  .skills-section {
    margin-bottom: 1rem;
  }
  
  /* Profile image enhancement */
  .profile-image img, 
  img[src="profile_pic.jpeg"] {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 6px;
    transition: transform 0.3s ease;
  }
  
  
  /* Section dividers */
  .section-divider,
  h2 {
    border-bottom: 1px solid #eaeaea;
    margin: 1rem 0 0.5rem 0;
    padding-bottom: 0.5rem;
  }
  
  /* Improved text readability */
  p {
    line-height: 1.6;
  }
  
  /* General spacing improvements */
  section {
    margin-bottom: 2rem;
  }
  
  /* List styling */
  ul {
    padding-left: 1.2rem;
  }
  
  li {
    margin-bottom: 0.5rem;
  }

/* Experience section styling */
.experience-entry {
    margin-bottom: 2rem;
  }
  
  .experience-entry h3 {
    margin-bottom: 0.2rem;
    color: #333;
  }
  
  .experience-entry p {
    margin-top: 0;
    margin-bottom: 0.8rem;
    color: #666;
    font-style: italic;
  }
  
  .experience-entry ul {
    margin-top: 0.5rem;
  }
/* Make content more compact */
body {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  /* Reduce spacing between sections */
  h2 {
    margin-top: 1.2rem;
    margin-bottom: 0.8rem;
  }
  
  h3 {
    margin-top: 0.9rem;
    margin-bottom: 0.3rem;
  }
  
  /* Make lists more compact */
  ul {
    margin-top: 0.3rem;
    margin-bottom: 0.8rem;
  }
  
  li {
    margin-bottom: 0.3rem;
    line-height: 1.3;
  }
  
  /* Add some horizontal breathing room */
  .page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  /* Reduce section margins */
  section {
    margin-bottom: 1.5rem;
  }
  
  /* Make experience entries more compact */
  .experience-entry {
    margin-bottom: 1rem;
  }