diff --git a/index.html b/index.html
index fd956a6a..d4a1f419 100644
--- a/index.html
+++ b/index.html
@@ -58,7 +58,15 @@
Menu
+
Services
+
Contact Us
diff --git a/style.css b/style.css
index 639fbee6..930c9955 100644
--- a/style.css
+++ b/style.css
@@ -718,4 +718,45 @@ body{
.summery:hover {
cursor: pointer;
-}
\ No newline at end of file
+}
+
+/*Drop down*/
+ul li ul.dropdown {
+ width: auto;
+ background: #000; /* Black background */
+ position: absolute;
+ z-index: 999;
+ display: none;
+ padding: 10px 0;
+ border-radius: 4px; /* Rounded corners */
+}
+
+/* Show dropdown menu on hover */
+.nav-link:focus {
+ outline: none;
+}
+ul li:hover ul.dropdown {
+ display: block;
+}
+
+/* Dropdown menu item styling */
+ul li ul.dropdown li {
+ display: block;
+ background: #000; /* Black background */
+ margin: 2px 0;
+}
+
+ul li ul.dropdown li a {
+ display: block;
+ padding: 10px 20px;
+ text-decoration: none;
+ color: #fff; /* White font color */
+ white-space: nowrap; /* Prevent text wrapping */
+}
+
+ul li ul.dropdown li a:hover {
+ background: #ff0000; /* Red background on hover */
+ color: #fff; /* Ensure font color remains white */
+}
+
+/* Optional: styling for active links */