 /* Navbar Styling */
 .navbar {
     background: linear-gradient(135deg, #04843c, #eb2129);
     display: flex;
     justify-content: space-around;
     align-items: center;
     padding: 10px 20px;
     position: fixed;
     width: 100%;
     top: 0;
     left: 0;
     z-index: 100;
     color: var(--white-color);
 }

 .navbar-logo {
     font-size: 24px;
     font-weight: bold;
 }

 .navbar-logo-img {
     width: 120px;
     border-radius: 5px;
 }

 .navbar ul {
     display: flex;
     list-style-type: none;
 }

 .navbar ul li {
     margin: 0 15px;
     position: relative;
 }

 .navbar ul li a {
     text-decoration: none;
     color: var(--white-color);
     padding: 8px;
     font-weight: 700;
 }

 .navbar ul li a:hover {
     background-color: var(--white-color);
     color: var(--primary-bg-color);
     border-radius: 5px;
 }

 .login-active {
     border-radius: 5px;
     background-color: var(--black-color);
 }

 /* Dropdown Styling */
 .navbar ul li ul {
     position: absolute;
     top: 26px;
     left: 0;
     background: linear-gradient(135deg, #04843c, #eb2129);
     display: none;
     flex-direction: column;
     padding: 10px 0;
     box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
 }

 .navbar ul li:hover ul {
     display: flex;
     border-radius: 5px;
 }

 .navbar ul li ul li {
     margin: 10px 0;
 }

 /* Responsive Styling */
 .menu-icon {
     display: none;
     font-size: 28px;
     cursor: pointer;
 }

 @media (max-width: 980px) {
     .navbar {
         justify-content: space-between;
     }

     .navbar ul {
         display: none;
         position: absolute;
         top: 40px;
         right: 0;
         background: linear-gradient(135deg, #04843c, #eb2129);
         width: 100%;
         flex-direction: column;
         padding: 20px;
         z-index: 100;
     }

     .navbar ul.show {
         display: flex;
     }

     .navbar ul li {
         margin: 10px 0;
         text-align: center;
     }

     .menu-icon {
         display: block;
         color: var(--white-color);
     }
 }