body {
    font-family: "Nunito Sans", sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  input, button {
    transition: all 0.2s ease-in-out;
  }
  
  button:hover {
    transform: scale(1.03);
  }
  
  /* Smooth section transitions */
  section {
    scroll-margin-top: 100px;
  }
  
  /* AOS Overrides (optional) */
  [data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
  }
  [data-aos].aos-animate {
    opacity: 1;
  }
  
  /* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  
  ::-webkit-scrollbar-track {
    background: #0f1111; /* Matches dark background */
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #26e088; /* Green accent */
    border-radius: 6px;
    border: 2px solid #0f1111; /* Gap between thumb and track */
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background-color: #1dd37d;
  }
  
  /* Firefox */
  * {
    scrollbar-width: thin;
    scrollbar-color: #26e088 #0f1111;
  }