diff --git a/README.md b/README.md
index 4905a51..61d1d9a 100644
--- a/README.md
+++ b/README.md
@@ -1,128 +1,166 @@
-
# ๐ Python Learning Assistant
+
+
[](https://python-learning-assistant.streamlit.app/)
[](https://opensource.org/licenses/MIT)
+[](https://python.org)
+[](https://aistudio.google.com)
+[](https://github.com/RobinaMirbahar/Python-Learning-Assistant/pulls)
+
+**An interactive AI-powered Python tutor โ built for all skill levels.**
+Adaptive explanations. Live code examples. Instant feedback. Powered by Google Gemini.
-An interactive AI tutor powered by Google's Gemini API for learning Python at all skill levels.
+[๐ Live Demo](https://python-learning-assistant.streamlit.app/) ยท [๐ Report Bug](https://github.com/RobinaMirbahar/Python-Learning-Assistant/issues) ยท [โจ Request Feature](https://github.com/RobinaMirbahar/Python-Learning-Assistant/issues)

-## ๐ Project Structure
+
-```
-PYTHON-LEARNING-ASSISTANT/
-โโโ .devcontainer/ # VSCode dev container configuration
-โโโ .github/ # GitHub workflows and actions
-โโโ venv/ # Python virtual environment
-โโโ .env # Environment variables
-โโโ .gitignore # Git ignore rules
-โโโ LICENSE # MIT License file
-โโโ python-assistant.py # Main Streamlit application
-โโโ README.md # This documentation file
-โโโ requirements.txt # Python dependencies
-```
+---
+
+## โจ Features
+
+| Feature | Description |
+|---|---|
+| ๐ฏ **Adaptive Learning** | Tailored explanations for beginner, intermediate, and advanced learners |
+| ๐ป **Interactive Examples** | Run code snippets directly inside the app |
+| ๐ **50+ Question Bank** | Pre-loaded with curated Python questions across all skill levels |
+| โก **Real-time Feedback** | Instant AI-driven explanations and corrections |
+| ๐๏ธ **Session History** | Progress tracking that persists throughout your learning session |
+
+---
## ๐ Quick Start
### Prerequisites
-- Python 3.10+
-- Gemini API key ([get one here](https://aistudio.google.com/app/apikey))
+
+- Python **3.10+**
+- A free [Gemini API key](https://aistudio.google.com/app/apikey)
### Installation
+
```bash
-# Clone the repository
+# 1. Clone the repository
git clone https://github.com/yourusername/python-learning-assistant.git
cd python-learning-assistant
-# Create and activate virtual environment
+# 2. Create and activate a virtual environment
python -m venv venv
-source venv/bin/activate # Linux/Mac
-.\venv\Scripts\activate # Windows
+source venv/bin/activate # macOS / Linux
+.\venv\Scripts\activate # Windows
-# Install dependencies
+# 3. Install dependencies
pip install -r requirements.txt
-# Configure environment
+# 4. Add your API key
echo "GEMINI_API_KEY=your_api_key_here" > .env
-```
-### Running the App
-```bash
+# 5. Launch the app
streamlit run python-assistant.py
```
-## ๐ Live Demo
-Access the live application:
-[https://python-learning-assistant.streamlit.app/](https://python-learning-assistant.streamlit.app/)
+Then open [http://localhost:8501](http://localhost:8501) in your browser. ๐
+
+---
+
+## ๐ Project Structure
+
+```
+PYTHON-LEARNING-ASSISTANT/
+โโโ .devcontainer/ # VSCode dev container configuration
+โโโ .github/ # GitHub Actions workflows
+โโโ venv/ # Python virtual environment (gitignored)
+โโโ .env # Environment variables (gitignored)
+โโโ .gitignore
+โโโ LICENSE
+โโโ python-assistant.py # Main Streamlit application
+โโโ README.md
+โโโ requirements.txt # Python dependencies
+```
-## ๐ก Features
-- **Adaptive Learning**: Tailored explanations for beginners, intermediate, and advanced learners
-- **Interactive Examples**: Run code snippets directly in the app
-- **Comprehensive Question Bank**: Pre-loaded with 50+ Python questions
-- **Real-time Feedback**: Get instant explanations and corrections
-- **Progress Tracking**: Session history maintains your learning journey
+---
## ๐ Sample Questions
-### Beginner
+
+
+๐ข Beginner
+
- "Explain variables and data types in Python"
- "How do if-else statements work?"
-- "What are lists and how to use them?"
+- "What are lists and how do I use them?"
+
+
+
+
+๐ก Intermediate
-### Intermediate
- "Explain OOP concepts with a class example"
-- "How to handle file I/O operations?"
-- "What are decorators and practical uses?"
+- "How do I handle file I/O operations?"
+- "What are decorators and when should I use them?"
+
+
+
+
+๐ด Advanced
-### Advanced
-- "Explain metaclasses with use cases"
-- "How to optimize Python code performance?"
+- "Explain metaclasses with real-world use cases"
+- "How can I optimize Python code performance?"
- "Implement a custom context manager"
+
+
+---
+
## ๐ ๏ธ Development
-### Using Dev Container
-1. Open in VSCode
-2. Reopen in Container (F1 > "Remote-Containers: Reopen in Container")
-3. The environment will automatically configure
-### Dependencies
-Listed in `requirements.txt`:
+### Using the Dev Container (VSCode)
+
+1. Open the project folder in VSCode
+2. Press `F1` โ select **"Remote-Containers: Reopen in Container"**
+3. The environment configures automatically โ no manual setup needed
+
+### Dependencies (`requirements.txt`)
+
```
streamlit>=1.32.0
google-generativeai>=0.3.0
python-dotenv>=1.0.0
```
+---
+
## ๐ค Contributing
-Pull requests are welcome! For major changes, please open an issue first.
-1. Fork the repository
-2. Create your feature branch (`git checkout -b feature/your-feature`)
-3. Commit your changes (`git commit -m 'Add some feature'`)
-4. Push to the branch (`git push origin feature/your-feature`)
-5. Open a pull request
+Contributions are welcome and appreciated! Here's how to get started:
+
+1. **Fork** this repository
+2. **Create** a feature branch: `git checkout -b feature/your-feature-name`
+3. **Commit** your changes: `git commit -m 'feat: add your feature'`
+4. **Push** to your branch: `git push origin feature/your-feature-name`
+5. **Open** a Pull Request
+
+> For major changes, please [open an issue](https://github.com/RobinaMirbahar/Python-Learning-Assistant/issues) first to discuss what you'd like to change.
+
+---
## ๐ License
-This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
+Distributed under the **MIT License**. See [`LICENSE`](LICENSE) for details.
+
+---
+
+## ๐ About the Author
-## ๐ Credits
-โจ Created and maintained by Robina Mirbahar
-๐ Google Cloud Innovator Champion | ๐ฉโ๐ป Women Techmakers Ambassador | ๐ Google Developer Expert
+
-๐ **Connect with me:**
+**Robina Mirbahar**
+๐ Google Cloud Innovator Champion | ๐ฉโ๐ป Women Techmakers Ambassador | ๐ Google Developer Expert
-
-
-
-
-
-
-
-
-
-
-
-
+[](https://www.linkedin.com/in/robinamirbahar/)
+[](https://twitter.com/robinamirbahar)
+[](https://github.com/robinamirbahar)
+*If you find this project useful, consider giving it a โญ โ it helps others discover it too!*
+