diff --git a/index.html b/index.html
index 0042b96..221c5a6 100644
--- a/index.html
+++ b/index.html
@@ -312,44 +312,34 @@
Contact Us!
-
-
-
-
-
-
Quick Links
diff --git a/style.css b/style.css
index 0bb465b..1042396 100644
--- a/style.css
+++ b/style.css
@@ -902,10 +902,9 @@ input[type="number"]::-webkit-inner-spin-button {
/* Modal styles */
.modal {
-
- display: flex;
- flex-direction: column;
- /* flex-wrap: nowrap; */
+ display: none;
+ flex-direction: row;
+ flex-wrap: nowrap;
justify-content: center;
align-items: center;
position: fixed;
@@ -918,17 +917,15 @@ input[type="number"]::-webkit-inner-spin-button {
background-color: rgba(0, 0, 0, 0.4);
}
-
.modal-content {
background-color: #ffffff;
- /* margin: 10% auto; */
- padding: 50px;
+ margin: 10% auto;
+ padding: 30px;
border-radius: 10px;
- width: 90%;
+ width: 70%;
max-width: 500px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
- position: relative;
- text-align: center;
+
}
.close {
@@ -946,76 +943,56 @@ input[type="number"]::-webkit-inner-spin-button {
.modal-content h2 {
margin-top: 0;
- margin-bottom: 10px;
+ margin-bottom: 20px;
text-align: center;
color:black;
- font-size: 24px;
+ font-size: 20px;
}
-/* .modal-content label {
+.modal-content label {
display: block;
margin-bottom: 8px;
color: #666;
-} */
-
-.form-group {
- position: relative;
- margin-bottom: 20px;
-}
-
-
-.form-group .icon {
- position: absolute;
- top: 50%;
- left: 10px;
- transform: translateY(-50%);
- background-color: rgb(75, 179, 75);
- color: white;
- border-radius: 50%;
- width: 24px;
- height: 24px;
- display: flex;
- justify-content: center;
- align-items: center;
-}
-
-
-.form-group input,
-.form-group textarea {
- width: 100%;
- padding: 10px 10px 10px 40px;
- border: 1px solid #ccc;
- border-radius: 5px;
- font-size: 14px;
}
-.form-group input::placeholder,
-.form-group textarea::placeholder {
- color: #bbb;
+.modal-content input[type="text"],
+.modal-content input[type="email"],
+.modal-content textarea {
+ width: 100%;
+ padding: 12px;
+ margin-bottom: 20px;
+ border: 1px solid #ccc;
+ border-radius: 5px;
+ box-sizing: border-box;
+ font-size: 16px;
+ max-width: 100%;
}
-
-.form-group textarea {
- height: 80px;
- padding: 10px;
+.modal-content input[type="text"]:focus,
+.modal-content input[type="email"]:focus,
+.modal-content textarea:focus {
+ outline: none;
+ border-color: #66afe9;
}
.modal-content button[type="submit"] {
- background: linear-gradient(to right, rgb(75, 179, 75), rgb(42, 228, 42));
- color: white;
- border: none;
- border-radius: 5px;
- padding: 10px;
- font-size: 16px;
- cursor: pointer;
- width: 100%;
+ background-color:#0e4b16;
+ color: white;
+ padding: 12px 20px;
+ justify-content: center;
+ border: none;
+ border-radius: 5px;
+ cursor: pointer;
+ font-size: 16px;
+ transition: background-color 0.3s;
+ display: block;
+ margin: auto;
}
.modal-content button[type="submit"]:hover {
- background: linear-gradient(to right, rgb(63, 220, 63), rgb(20, 124, 20));
+ background-color:#053314;
}
-
.modal-content button[type="submit"]:focus {
outline: none;
}
@@ -1030,32 +1007,19 @@ input[type="number"]::-webkit-inner-spin-button {
cursor: pointer;
}
/* rating stars */
-
.rating {
- display: flex;
+ width: 180px;
+ margin:auto;
justify-content: center;
- align-items: center;
- margin-bottom: 20px;
-}
-
-.rating h2 {
- margin: 0;
- margin-right: 10px;
- font-size: 18px;
}
.rating__star {
- font-size: 24px;
- margin: 0 5px;
+ font-size: 16px;
+ margin-bottom: 20px;
+ margin-left: 14px;
cursor: pointer;
color: #dabd18b2;
}
-
-
-.rating__star:hover,
-.rating__star.active {
- color: #ffc107;
-}
.footer {