diff --git a/docs/data-visualization/black-friday-sales-analysis.md b/docs/data-visualization/black-friday-sales-analysis.md
new file mode 100644
index 00000000..e22ed650
--- /dev/null
+++ b/docs/data-visualization/black-friday-sales-analysis.md
@@ -0,0 +1,237 @@
+# π Black Friday Sales Analysis
+
+
+

+
+
+## π― AIM
+
+To analyze the Black Friday sales dataset, understand customer purchasing behavior, identify trends, and generate insights through data visualization and statistical analysis.
+
+## π DATASET LINK
+
+[https://www.kaggle.com/datasets/rajeshrampure/black-friday-sale/data](https://www.kaggle.com/datasets/rajeshrampure/black-friday-sale/data)
+
+## π KAGGLE NOTEBOOK
+
+[https://www.kaggle.com/code/kashishkhurana1204/exploratory-data-analysis-eda](https://www.kaggle.com/code/kashishkhurana1204/exploratory-data-analysis-eda)
+
+??? Abstract "Kaggle Notebook"
+
+
+
+## βοΈ TECH STACK
+
+| **Category** | **Technologies** |
+|--------------------------|---------------------------------------------|
+| **Languages** | Python |
+| **Libraries/Frameworks** | Matplotlib, Pandas, Seaborn, Numpy |
+| **Tools** | Github, Jupyter, VS Code, Kaggle |
+
+---
+
+## π DESCRIPTION
+
+!!! info "What is the requirement of the project?"
+ - Understanding customer purchasing behavior during Black Friday Sales.
+ - Identifying trends in product sales and demographics.
+ - Performing statistical analysis and data visualization.
+
+??? info "How is it beneficial and used?"
+ - Helps businesses in decision-making for better marketing strategies.
+ - Identifies key customer demographics for targeted advertising.
+ - Provides insights into which products perform well in sales.
+
+??? info "How did you start approaching this project? (Initial thoughts and planning)"
+ - I was thinking about a project that helps businesses in decision-making for better marketing strategies.
+ - I searched for relevant datasets on Kaggle that fulfill my project requirements.
+ - I found the Black Friday Sales dataset which is a perfect fit for my project.
+ - I started by understanding the dataset and its features.
+ - Data Cleaning: Handled missing values and corrected data types.
+ - Data Exploration: Analyzed purchasing patterns by customer demographics.
+ - Statistical Analysis: Derived insights using Pandas and Seaborn.
+ - Data Visualization: Created visual graphs for better understanding.
+
+??? info "Mention any additional resources used (blogs, books, chapters, articles, research papers, etc.)."
+ - [https://www.kaggle.com/datasets/rajeshrampure/black-friday-sale/data](https://www.kaggle.com/datasets/rajeshrampure/black-friday-sale/data)
+
+
+---
+
+## π PROJECT EXPLANATION
+
+### π§© DATASET OVERVIEW & FEATURE DETAILS
+
+??? example "π BlackFriday.csv"
+
+ - The dataset contains transaction records of Black Friday Sales.
+
+| Feature Name | Description | Datatype |
+|----------------------------|------------------------------------------|------------|
+| User_ID | Unique identifier for customers | int64 |
+| Product_ID | Unique identifier for products | object |
+| Gender | Gender of customer | object |
+| Age | Age group of customer | object |
+| Occupation | Occupation category | int64 |
+| City_Category | City category (A, B, C) | object |
+| Stay_In_Current_City_Years | Duration of stay in the city | object |
+| Marital_Status | Marital status of customer | int64 |
+| Purchase | Amount spent by the customer | int64 |
+
+
+---
+
+### π€ PROJECT WORKFLOW
+
+!!! success "Project workflow"
+
+ ``` mermaid
+ graph LR
+ A[Data Collection] --> B[Data Cleaning]
+ B --> C[Exploratory Data Analysis]
+ C --> D[Data Visualization]
+ D --> E[Conclusion & Insights]
+ ```
+
+=== "Step 1"
+ **Data Loading and Preprocessing**
+
+ - Importing the dataset using Pandas and checking the initial structure.
+
+ - Converting data types and renaming columns for consistency.
+
+=== "Step 2"
+ **Handling Missing Values and Outliers**
+
+ - Identifying and filling/removing missing values using appropriate techniques.
+
+ - Detecting and treating outliers using boxplots and statistical methods.
+
+=== "Step 3"
+ **Exploratory Data Analysis (EDA) with Pandas and Seaborn**
+
+ - Understanding the distribution of key features through summary statistics.
+
+ - Using groupby functions to analyze purchasing behavior based on demographics.
+
+=== "Step 4"
+ **Creating Visualizations for Insights**
+
+ - Using Seaborn and Matplotlib to generate bar charts, histograms, and scatter plots.
+
+ - Creating correlation heatmaps to identify relationships between variables.
+
+=== "Step 5"
+ **Identifying Trends and Patterns**
+
+ - Analyzing seasonal variations in sales data.
+
+ - Understanding the impact of age, gender, and occupation on purchase amounts.
+
+=== "Step 6"
+ **Conclusion and Final Report**
+
+ - Summarizing the key findings from EDA.
+
+ - Presenting actionable insights for business decision-making.
+
+---
+
+### π₯ CODE EXPLANATION
+
+=== "plotgraph() function"
+
+ ```py
+ gender_sales = df.groupby('Gender')['Purchase'].sum()
+
+ plt.figure(figsize=(6, 6))
+ plt.pie(gender_sales, labels=gender_sales.index, autopct='%1.1f%%', startangle=140, textprops={'fontsize': 14})
+ plt.title('Sales by Gender', fontsize=16)
+
+ plt.show()
+
+ age_gender_sales = df.groupby(['Age', 'Gender'])['Purchase'].sum().unstack()
+
+ age_gender_sales.plot(kind='bar', figsize=(12, 6))
+ plt.title('Sales by Age Group and Gender')
+ plt.xlabel('Age Group')
+ plt.ylabel('Total Sales')
+ plt.xticks(rotation=45)
+ plt.legend(title='Gender')
+ plt.show()
+ ```
+
+ - It displays the visualization graph of sales by age group and gender.
+
+---
+
+### βοΈ PROJECT TRADE-OFFS AND SOLUTIONS
+
+=== "Trade Off 1"
+ - **Trade-off:** High computational time due to large dataset.
+ - **Solution:** Used optimized Pandas functions to enhance performance.
+
+=== "Trade Off 2"
+ - **Trade-off:** Data Imbalance due to customer distribution.
+ - **Solution:** Applied statistical techniques to handle biases.
+
+---
+
+## πΌ SCREENSHOTS
+
+!!! tip "Visualizations and EDA of different features"
+
+ === "Sales by Age Group and Gender"
+ 
+
+ === "Sales by City Category"
+ 
+
+ === "Sales by Occupation"
+ 
+
+ === "Purchase Behavior via Marital Status"
+ 
+
+ === "Sales by Age Group"
+ 
+
+ === "Sales by Gender"
+ 
+
+---
+
+## β
CONCLUSION
+
+### π KEY LEARNINGS
+
+!!! tip "Insights gained from the data"
+ - Majority of purchases were made by young customers.
+
+ - Men made more purchases compared to women.
+
+ - Electronic items and clothing were the top-selling categories.
+
+---
+
+### π USE CASES
+
+=== "Application 1"
+ **Retail Analytics**
+ - Helps businesses understand customer behavior and target promotions accordingly.
+
+=== "Application 2"
+ **Sales Forecasting**
+ - Provides insights into seasonal trends and helps in inventory management.
+
+### π USEFUL LINKS
+
+=== "GitHub Repository"
+ - [https://github.com/Kashishkh/-Exploratory-Data-Analysis-](https://github.com/Kashishkh/-Exploratory-Data-Analysis-)
diff --git a/docs/machine-learning/crop-recommendation.md b/docs/machine-learning/crop-recommendation.md
index 262a1128..2b838766 100644
--- a/docs/machine-learning/crop-recommendation.md
+++ b/docs/machine-learning/crop-recommendation.md
@@ -19,7 +19,9 @@ It is an AI-powered Crop Recommendation System that helps farmers and agricultur
??? Abstract "Kaggle Notebook"