diff --git a/Hover Cards/index.html b/Hover Cards/index.html
new file mode 100644
index 00000000..938877a7
--- /dev/null
+++ b/Hover Cards/index.html
@@ -0,0 +1,18 @@
+
+
+
+
+
+ Hover Expand Card
+
+
+
+
+
+
Hover Over Me
+
Hover Over Me
+
Hover Over Me
+
+
+
+
diff --git a/Hover Cards/style.css b/Hover Cards/style.css
new file mode 100644
index 00000000..a7901053
--- /dev/null
+++ b/Hover Cards/style.css
@@ -0,0 +1,66 @@
+
+* {
+ box-sizing: border-box;
+}
+
+body {
+ height: 100vh;
+ margin: 0;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ background-color: #f4f7fb;
+ font-family: 'Poppins', sans-serif;
+}
+
+/* ====== CARD CONTAINER ====== */
+.card {
+ width: 400px;
+ height: 400px;
+ border-radius: 8px;
+ background: #f4f7fb;
+ display: flex;
+ gap: 6px;
+ padding: 2em;
+ box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
+}
+
+/* ====== PANELS ====== */
+.card p {
+ height: 100%;
+ flex: 1;
+ overflow: hidden;
+ cursor: pointer;
+ border-radius: 4px;
+ transition: all 0.5s ease;
+ background: #1a1a2e;
+ border: 1px solid #6c63ff;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+
+/* Expand on hover */
+.card p:hover {
+ flex: 4;
+ background: #2f2fa2;
+}
+
+/* ====== TEXT ====== */
+.card p span {
+ min-width: 14em;
+ padding: 0.5em;
+ text-align: center;
+ transform: rotate(-90deg);
+ transition: all 0.5s ease;
+ text-transform: uppercase;
+ color: #6c63ff;
+ letter-spacing: 0.1em;
+ font-weight: 500;
+}
+
+/* Rotate text on hover */
+.card p:hover span {
+ transform: rotate(0);
+ color: #ffffff;
+}
diff --git a/README.md b/README.md
index 5b986420..63761a72 100644
--- a/README.md
+++ b/README.md
@@ -65,6 +65,7 @@ Please be aware that the demos may exhibit significant accessibility issues, suc
- [Gradient Animation](#gradient-animation)
- [Growing Flower](#growing-flower)
- [Horizontal image slider](#horizontal-image-slider)
+- [Hover Animation](#hover-animation)
- [Image Gallery](#image-gallery)
- [Image Hover Effect]()
- [Image Comparison Slider](#image-comparison-slider)