/* style.css */

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    color: #222;
  }
  
  /* Gradient name text */
  .gradient-text {
    background: linear-gradient(to right, #ae3ec9, #f03e3e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  /* Gradient button */
  .btn-gradient {
    background: linear-gradient(to right, #ae3ec9, #f03e3e);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    border: none;
    transition: background 0.3s ease;
  }
  
  .btn-gradient:hover {
    background: linear-gradient(to right, #9c36b5, #e03131);
    color: white;
  }
  
  /* Profile image (headshot) */
  .profile-img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 100%;
    border: 4px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Footer links */
  footer a:hover {
    color: #ae3ec9;
    text-decoration: underline;
  }
  
  /* Add spacing below the heading */
  .hero-heading {
    margin-bottom: 2rem;
  }
  
  #projects h2 {
    margin-bottom: 3rem; /* Adjust as needed */
  }
  
  #projects .row {
    padding-top: 1.5rem; /* adds spacing between heading and cards */
  }
  
  .project-description {
    font-size: 0.95rem;  /* or 0.9rem if you want it smaller */
    line-height: 1.5;
  }
  
  #about p {
    font-size: 0.95rem;  /* Try 0.9rem if you want it smaller */
    line-height: 1.6;
  }
  