.about-me-section {
    padding: 4rem 2rem;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM77.38 0C85.239 2.966 90.502 4 100 4V2c-6.842 0-11.386-.542-16.396-2h-6.225zM0 14c8.44 0 13.718-1.21 22.272-4.402l1.768-.661C33.64 5.347 39.647 4 50 4c10.271 0 15.362 1.222 24.629 4.928C84.112 12.722 89.438 14 100 14v-2c-10.271 0-15.362-1.222-24.629-4.928C65.888 3.278 60.562 2 50 2 39.374 2 33.145 3.397 23.34 7.063l-1.767.662C13.223 10.84 8.163 12 0 12v2z' fill='%235e5e5e' fill-opacity='0.2' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-attachment: fixed;
  background-repeat: repeat;
  /* background-size: contain; */
    /* background: var(--bg, #0e0e0e); */
    color: var(--text, #eee);
  }
  .name{
    font-family: "Caveat";
    font-size: 2.5rem;
    font-weight: 600;
  }
  .about-flex-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    flex-wrap: nowrap;
  }
  
  .image-wrapper {
    width: 300px;
    flex-shrink: 0;
    position: sticky;
    top: 12rem; /* Image stays visible while scrolling */
    align-self: flex-start;
  }
  
  .profile-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
  }
  
  .profile-image:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
  }
  
  .about-me-container {
    flex: 1;
    background: var(--bg, #0e0e0e94);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  @media (max-width: 768px) {
    .about-flex-wrapper {
      flex-direction: column;
      align-items: center;
    }
  
    .image-wrapper {
      position: static;
      width: 100%;
      text-align: center;
    }
  
    .profile-image {
      height: auto;
      max-width: 250px;
    }
  
    .about-me-container {
      margin-left: 0;
      padding: 1.5rem;
    }
  }

  

  .about-text {
    
    flex: 1;
    min-width: 260px;
  }
  
  .about-heading {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .about-description {
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
  }
  
  /* Buttons outside the container */
  .about-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
  }
  
  .btn {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .btn-primary {
    background: #1eceabd5;
    color: #000;
  }
  
  .btn-primary:hover {
    background: #00ffcc;
  }
  
  .btn-secondary {
    background: transparent;
    border: 2px solid #00ffcc;
    color: #00ffcc;
  }
  
  .btn-secondary:hover {
    background: #00ffcc;
    color: #000;
  }
  
  /* Light theme overrides */
  body.light {
    --bg: #fdfdfda8;
    --text: #111;
  }
  
  body.light .btn-secondary {
    border-color: #007acc;
    color: #007acc;
  }
  
  body.light .btn-secondary:hover {
    background: #007acc;
    color: #fff;
  }
  
  body.light .btn-primary {
    background: #007acc;
    color: #fff;
  }
  
  body.light .btn-primary:hover {
    background: #005ea6;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .about-me-container {
      flex-direction: column;
      text-align: justify;
      padding: 1.5rem;
      gap: 2rem;
    }
  
    .about-buttons {
      justify-content: center;
    }
  
    .image-wrapper {
      width: 220px;
    }
    .about-heading{
      font-size: 1.5rem;
    }
    .about-description {
      font-size: 0.9rem;
    }
  }
  