diff --git a/Calculators/Beer-Lambert-Law-Calculator/README.md b/Calculators/Beer-Lambert-Law-Calculator/README.md
new file mode 100644
index 000000000..d3804813a
--- /dev/null
+++ b/Calculators/Beer-Lambert-Law-Calculator/README.md
@@ -0,0 +1,52 @@
+#
Beer Lambert Law Calculator
+
+## Description :-
+
+This project is a web-based calculator that implements the **Beer-Lambert Law**:
+
+\[ A = \varepsilon \cdot c \cdot l \]
+
+It allows users to calculate the absorbance (\( A \)) of a solution based on:
+
+- \( \varepsilon \): Molar Absorptivity (L/mol·cm)
+- \( c \): Concentration (mol/L)
+- \( l \): Path Length (cm)
+
+## Tech Stacks :-
+
+- HTML
+- CSS
+- JavaScript
+
+## Features :-
+
+- **Dynamic Formula Display**: The formula is displayed in LaTeX for clarity.
+- **Real-Time Results**: Automatically calculates the absorbance when valid inputs are provided.
+- **Modern UI**: A responsive design with a stylish dark blue card background.
+- **Error Handling**: Ensures all inputs are valid and provides feedback for invalid data.
+
+## How to Use :-
+
+1. Enter the values for:
+ - Molar Absorptivity (\( \varepsilon \)) in L/mol·cm
+ - Concentration (\( c \)) in mol/L
+ - Path Length (\( l \)) in cm.
+2. Click the **Calculate** button to compute the absorbance (\( A \)).
+3. Click the **Clear** button to reset the inputs and results.
+
+### Example Calculation :-
+
+#### Case:
+- \( \varepsilon = 5000 \, \text{L/mol·cm} \)
+- \( c = 0.02 \, \text{mol/L} \)
+- \( l = 1 \, \text{cm} \)
+
+#### Output:
+- Absorbance (\( A \)):
+ \[
+ A = \varepsilon \cdot c \cdot l = 5000 \cdot 0.02 \cdot 1 = 100
+ \]
+
+## Screenshots :-
+
+![image](https://github.com/user-attachments/assets/9988db82-769e-4d6c-95f7-b2f0ed5b3b45)
diff --git a/Calculators/Beer-Lambert-Law-Calculator/assets/background.webp b/Calculators/Beer-Lambert-Law-Calculator/assets/background.webp
new file mode 100644
index 000000000..2c42b69cb
Binary files /dev/null and b/Calculators/Beer-Lambert-Law-Calculator/assets/background.webp differ
diff --git a/Calculators/Beer-Lambert-Law-Calculator/index.html b/Calculators/Beer-Lambert-Law-Calculator/index.html
new file mode 100644
index 000000000..d5bdc4a94
--- /dev/null
+++ b/Calculators/Beer-Lambert-Law-Calculator/index.html
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+ Beer Lambert Law Calculator
+
+
+
+
+
Beer-Lambert Law Calculator
+
+ Formula:
+ \( A = \varepsilon \cdot c \cdot l \)
+