Contributions ============== All contributions are welcome and appreciated! 💙 Whether it's fixing a bug, improving documentation, or adding a new feature — every bit helps make this project better. 🛠️ How to Contribute --------------------- 1. **Fork** the repository on GitHub. 2. **Clone** your fork locally: .. code-block:: bash git clone https://github.com/your-username/your-repo-name.git cd your-repo-name 3. **Create a new branch** for your feature or fix: .. code-block:: bash git checkout -b feature/your-feature-name 4. **Commit your changes** with a clear and concise message: .. code-block:: bash git add . git commit -m "Add a short description of your changes" 5. **Push your branch** to your fork and open a Pull Request: .. code-block:: bash git push origin feature/your-feature-name