 .navbar {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     color: #fff;
     z-index: 1000;
     -webkit-transition: all 0.3s ease-in-out;
     -moz-transition: all 0.3s ease-in-out;
     -o-transition: all 0.3s ease-in-out;
     -ms-transition: all 0.3s ease-in-out;
     transition: all 0.3s ease-in-out;
 }

 .menu-toggle {
     display: none;
     cursor: pointer;
     width: 30px;
     height: 25px;
     position: relative;
 }

 .navbar .logo {
     width: 20%;
     transform: translateY(-22px);

 }

 ul.menu {
     width: 80%;
     justify-content: flex-end;
     align-items: center;
     padding: 5px 0 5px 0;
 }

 .nav-header {
     display: flex;
     max-width: 1275px;
     margin: 0 auto;
     width: 90%;
     align-items: center;
     padding: 10px 0 0 0;
     
 }

 nav.navbar.bgcolor {
     background-color: #fff;
     -webkit-transition: all 0.3s ease-in-out;
     -moz-transition: all 0.3s ease-in-out;
     -o-transition: all 0.3s ease-in-out;
     -ms-transition: all 0.3s ease-in-out;
     transition: all 0.3s ease-in-out;
 }

 nav.navbar.bgcolor .contact-btn a {
     color: var(--textcolor);
 }

 .menu-toggle span {
     display: block;
     width: 100%;
     height: 2px;
     background-color: #fff;
     position: absolute;
     transition: 0.3s;
 }

 .menu-toggle span:nth-child(1) {
     top: 0;
 }

 .menu-toggle span:nth-child(2) {
     top: 9px;
 }

 .menu-toggle span:nth-child(3) {
     bottom: 5px;
 }

 .menu-toggle.active span:nth-child(1) {
     transform: rotate(45deg);
     top: 11px;
 }

 .menu-toggle.active span:nth-child(2) {
     opacity: 0;
 }

 .menu-toggle.active span:nth-child(3) {
     transform: rotate(-45deg);
     top: 11px;
 }

 .menu {
     display: flex;
     gap: 20px;
 }

 .menu li {
     list-style: none;
     position: relative;
 }

 .menu li a {
     text-decoration: none;
     color: var(--text-color);
     margin: 10px 10px;
     font-weight: 400;
     display: block;
     font-family: var(--font-one);
     font-size: 1em;
     position: relative;
     transition: 0.5s;
 }

 .contact-btn a::after {
     position: absolute;
     content: "";
     width: 100%;
     height: 2px;
     top: 100%;
     left: 0;
     background: #206CFA;
     transition: transform 0.5s;
     transform: scaleX(0);
     transform-origin: right;
 }

 .contact-btn a:hover {
     color: #206CFA;
 }

 .contact-btn a:hover::after {
     transform: scaleX(1);
     transform-origin: left;
 }

 .menu li a::after {
     position: absolute;
     content: "";
     width: 100%;
     height: 2px;
     top: 100%;
     left: 0;
     background: var(--brand-color);
     transition: transform 0.5s;
     transform: scaleX(0);
     transform-origin: right;
 }

 .menu li a:hover {
     color: var(--brand-color);
 }

 .menu li a:hover::after {
     transform: scaleX(1);
     transform-origin: left;
 }

 .header-left {
     width: 100%;
     display: flex;
     align-items: center;
 }

 .contact-btn a {
     text-decoration: none;
     color: var(--text-color-two);
     position: relative;
     font-weight: 500;
     font-size: 1.2em;
 }

 .menu li ul {
     position: absolute;
     top: 40px;
     left: 0;
     background-color: #444;
     padding: 10px 0;
     display: none;
     min-width: 150px;
     z-index: 1000;
 }

 .menu li:hover > ul {
     display: block;
 }

 .menu li ul li {
     padding: 5px 15px;
 }

 .menu li ul li a {
     padding: 5px 0;
 }

 .menu li ul li ul {
     top: 0;
     left: 150px;
 }

 /* Responsive Styles */
 @media (max-width: 768px) {
     .menu-toggle {
         display: block;
     }

     .menu {
         flex-direction: column;
         position: fixed;
         top: 0;
         left: -100%;
         background-color: #000;
         width: 100%;
         height: 100%;
         overflow-y: auto;
         transition: left 0.3s ease;
         padding-top: 60px;
     }

     .menu.active {
         left: 0;
     }

     .menu li {
         text-align: left;
     }

     .close-btn {
         display: none;
     }
 }