 .navbar {
     justify-content: center;
     align-items: center;
     display: grid;
     grid-template-columns: 15% 25% 60% 0%;
     padding: 0 2%;
     background: #fff;
     /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
     position: relative;
     z-index: 1000;
 }

 .logo-section {
     display: flex;
     align-items: center;
 }

 .logo-section img {
     width: 65%;
 }

 .contact-info {
     display: flex;
     align-items: center;
     gap: 30px;
     border-right: 1px solid #ddd;
     border-left: 1px solid #ddd;
     padding: 5%;
     justify-content: right;
 }

 .contact-item {
     display: flex;
     align-items: center;
     /* gap: 15px; */
 }

 .icon-wrapper {
     width: 70px;
     height: 70px;
     /* background: #1a7a4f; */
     /* border-radius: 50%; */
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 24px;
 }

 .icon-wrapper img {
     width: 85%;
 }

 .contact-details {
     display: flex;
     flex-direction: column;
 }

 .phone {
     font-weight: 600;
     color: #333;
     font-size: 13px;
     padding: 0 10% 5% 0;
     border-bottom: 1px solid #aaa;
 }

 .email {
     color: #666;
     padding: 5% 0 0 0;
     padding: 5% 10% 0 0;
     font-size: 13px;
 }

 .divider {
     width: 1px;
     height: 60px;
     background: #ddd;
     display: none;
 }

 .nav-links {
     display: flex;
     gap: 40px;
     align-items: center;
     list-style: none;
     justify-content: right;
 }

 .nav-links a {
     text-decoration: none;
     color: #333;
     font-weight: 500;
     font-size: 15px;
     transition: color 0.3s;
 }

 .nav-links a:hover {
     color: #1a7a4f;
 }

 .nav-links a.active {
     color: #1a7a4f;
     border-bottom: 2px solid #1a7a4f;
     padding-bottom: 5px;
 }

 .cta-button {
     background-image: linear-gradient(to right, #04664c, rgb(59, 99, 59));
     color: #fff !important;
     padding: 12px 30px;
     border-radius: 5px;
     text-decoration: none;
     font-weight: 600;
     transition: background 0.3s;
     box-shadow: none;
     border: 0;
     font-size: 14px;
 }

 .cta-button:hover {
     background: #145d3a;
 }

 .hamburger {
     display: none;
     flex-direction: column;
     cursor: pointer;
     z-index: 1001;
 }

 .hamburger span {
     width: 30px;
     height: 3px;
     background: #1a7a4f;
     margin: 4px 0;
     transition: all 0.3s ease;
     border-radius: 3px;
 }

 .hamburger.active span:nth-child(1) {
     transform: rotate(45deg) translate(8px, 8px);
 }

 .hamburger.active span:nth-child(2) {
     opacity: 0;
 }

 .hamburger.active span:nth-child(3) {
     transform: rotate(-45deg) translate(8px, -8px);
 }

 @media (max-width: 1200px) {
     .navbar {
         padding: 0 5%;
     }

     .nav-links {
         gap: 25px;
     }

     .contact-info {
         gap: 20px;
     }
 }

 @media (max-width: 968px) {
     .contact-info {
         display: none;
     }

     .divider {
         display: none;
     }

     .hamburger {
         display: flex;
     }

     .nav-links {
         position: fixed;
         top: 0;
         right: -100%;
         height: 100vh;
         width: 300px;
         background: #fff;
         flex-direction: column;
         justify-content: left;
         align-items: start;
         padding: 20% 3% 0;
         gap: 30px;
         transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
         box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
     }

     .nav-links.active {
         right: 0;
     }

     .nav-links a {
         font-size: 18px;
         opacity: 0;
         transform: translateX(50px);
         transition: all 0.3s ease;
     }

     .nav-links.active a {
         opacity: 1;
         transform: translateX(0);
     }

     .nav-links.active a:nth-child(1) {
         transition-delay: 0.1s;
     }

     .nav-links.active a:nth-child(2) {
         transition-delay: 0.2s;
     }

     .nav-links.active a:nth-child(3) {
         transition-delay: 0.3s;
     }

     .nav-links.active a:nth-child(4) {
         transition-delay: 0.4s;
     }

     .nav-links.active a:nth-child(5) {
         transition-delay: 0.5s;
     }

     .nav-links.active .cta-button {
         transition-delay: 0.6s;
     }

     .overlay {
         display: none;
         position: fixed;
         top: 0;
         left: 0;
         width: 100%;
         height: 100vh;
         background: rgba(0, 0, 0, 0.5);
         z-index: 999;
         opacity: 0;
         transition: opacity 0.3s ease;
     }

     .overlay.active {
         display: block;
         opacity: 1;
     }
 }

 @media (max-width: 480px) {
     .navbar {
         padding: 0 5%;
         display: flex;
         justify-content: space-between;
     }

     .logo-section img {
         height: 75px;
         width: 75%;
     }

     .nav-links {
         width: 250px;
     }
 }

 /* Dropdown Base */
 .nav-links li {
     position: relative;
 }

 .submenu {
     position: absolute;
     top: 40px;
     left: 0;
     background: #fff;
     list-style: none;
     padding: 15px 0;
     width: 220px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     opacity: 0;
     visibility: hidden;
     transform: translateY(15px);
     transition: all 0.3s ease;
     border-radius: 5px;
 }

 .submenu li a {
     display: block;
     padding: 10px 20px;
     color: #333;
     font-size: 15px;
     text-decoration: none;
 }

 .submenu li a:hover {
     background: #f2f2f2;
 }

 /* Desktop Hover */
 .nav-links li.dropdown:hover .submenu {
     opacity: 1;
     visibility: visible;
     transform: translateY(0px);
 }

 /* Mobile (dropdown will slide) */
 @media (max-width: 968px) {
     .submenu {
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         box-shadow: none;
         opacity: 0;
         height: 0;
         overflow: hidden;
         visibility: hidden;
         transform: translateY(0);
     }

     .nav-link {
         text-align: left;
         margin: 0 auto 0 0;
     }

     .submenu.open {
         opacity: 1;
         visibility: visible;
         height: auto;
         padding: 10px 0;
     }

 }

 /* Common Arrow */
 .dropdown {
     position: relative;
     display: flex;
     align-items: center;
 }

 .dropdown-arrow {
     display: inline-block;
     margin-left: 5px;
     border: solid #555;
     border-width: 0 2px 2px 0;
     padding: 4px;
     transform: rotate(45deg);
     transition: transform 0.3s ease;
     cursor: pointer;
     margin: -5px 0 0 5px;
     font-size: 10px;
 }

 /* Desktop Hover Effect */
 @media (min-width: 969px) {
     .dropdown:hover .dropdown-arrow {
         transform: rotate(-135deg);
         /* Up arrow */
     }
 }



 @media (max-width: 968px) {

     .dropdown {
         width: 100%;
         justify-content: center;
     }

     .dropdown-arrow {
         position: absolute;
         right: 20px;
         transform: rotate(45deg);
     }

     .dropdown-arrow.active {
         transform: rotate(-135deg);
     }

     .submenu {
         position: absolute;
         width: 100%;
         background: #fff;
         height: 0;
         overflow: hidden;
         opacity: 0;
         visibility: hidden;
         transition: all 0.3s ease;
         margin-left: 0;
         z-index: 0;
         top: 30px;
     }

     .submenu.open {
         height: auto;
         opacity: 1;
         background: #f9f9f9;
         visibility: visible;
         padding: 10px 0;
         position: absolute;
         top: 40px;
         left: 0px;
         right: 0;
         z-index: 15;
     }
 }