diff --git a/index.html b/index.html
index 530f7b4..35aa914 100644
--- a/index.html
+++ b/index.html
@@ -1017,46 +1017,64 @@
We Value Your Feedback!
}
/* Rating Section Styling */
- .rating-group {
- display: flex;
- justify-content: center;
- gap: 8px;
- font-size: 24px;
- cursor: pointer;
+ .star-rating {
+
+ display: flex;
+ justify-content: center;
+ margin-top: 10px;
+ flex-direction: row-reverse;
+ font-size: 3rem;
+ gap: 25px;
+ line-height: 1;
+
}
- /* Individual Star Styling */
- .rating-group i {
- color: #ccc;
- /* Default star color */
- transition: color 0.3s ease;
+ .star-rating input {
+
+ display: none; /* Hide the radio buttons */
+
}
+ .star-rating label {
- /* Hover Effect */
- .rating-group i:hover,
- .rating-group i:hover~i {
- color: #f4d03f;
- /* Highlighted star color on hover */
+ color: #4b5563; /* Default star color */
+ cursor: pointer;
}
- /* Selected Star Color */
- .rating-group .selected,
- .rating-group .selected~i {
- color: #ff8c00;
- /* Color when star is selected */
+
+ .star-rating input:checked ~ label {
+
+ color: #4d994d;
+
+
}
+
+ .star-rating label:hover,
+ .star-rating label:hover ~ label {
+
+ color: #4d994d; /* Hover effect */
+
+
+ }
-
+