
    /* Navigation */
       /* Progress Bar */
       .new-progress-bar {
        position: fixed;
        top: 0;
        left: 0;
        width: 0%;
        height: .3px;
        background: oklch(32% .15 126);
        z-index: 10000;
        transition: width 0.1s ease;
        filter:blur(1.8892px);
      }
  
      /* Navigation Styles */
      .jjc-nav {
        position: fixed;
        top: 0;
        justify-self:
          center;
        align-self: center;
        width: 88vw;
        border-radius: 8px;
        box-shadow: 
          rgba(25, 25, 19, 0.0825) 0px 15px 15.3px -5.2px,
          rgba(110, 110, 110, 0.7) inset 0px 3px 7px -.9px,
          rgba(120, 120, 124, 0.85) 0px .2px 4.6px -.35px;
        margin: 28px 0 0 0;
        padding: 17px 1.5% 16.5px 1.5%;
        z-index: 1000;
        background: oklch(89.9% 0 0 / .95);
        transition: all 1.3s ease;
        opacity: 1;
      }
  
      .jjc-nav.scrolled {
        margin: 0;
        width: 100vw;
        background: oklch(99.8% 0.045 320 / .185);
        backdrop-filter: blur(1.4px);
        box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
        opacity: 1;}
      
      .jjc-nav.scrolled .jjc-nav{  text-shadow: .1px 11.1px 20px oklch(40% .1 132);
      }
  
      .jjc-nav-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
  
      .jjc-logo {
        font-size: 1.5rem;
        font-weight: 700;
        letter-spacing: -0.02em;
        transition: color 0.3s ease;
        text-decoration: none;
        color: oklch(29% .009 128);
      }
  
      .jjc-nav-menu {
        display: flex;
        gap: 3rem;
        align-items: center;
         color: oklch(89% 0.01 130);
        text-shadow: .1px 1.1px 2px oklch(40% .1 132);
  
      }
     
      .jjc-nav-links {
        display: flex;
        gap: 2.5rem;
        list-style: none;
      }
      .jjc-nav-links a {
        color: black;
        text-decoration: none;
        font-size: 15px;
        font-weight: 400;
        transition: color 0.3s ease;
        position: relative;
      }
  
      .jjc-nav-links a:hover,
      .jjc-nav-links a.active {
        color: oklch(9% 0 0);
      }
  
      .jjc-contact-btn {
        background: oklch(50% 0 0 /.675);
        color: #FFF;
        padding: 0.7rem 1.8rem;
        border: 1px solid transparent;
        border-radius: 50px;
        text-decoration: none;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }
  
      .jjc-contact-btn:hover {
        background:oklch(50% 0 0 /.675);
        color: #2c2c2c;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px oklch(0% 0 0 / 0.2);
      }
  
      /* Mobile Toggle */
      .jjc-mobile-toggle {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;      background-color: yellow;
  
        height: 22px;
        cursor: pointer;
        z-index: 1001;
        position: relative;
      }
  
      .jjc-mobile-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: yellow;
        transition: all 0.3s ease;
        transform-origin: center;
      }
  
      .jjc-mobile-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
      }
  
      .jjc-mobile-toggle.open span:nth-child(2) {
        opacity: 0;
      }
  
      .jjc-mobile-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
      }
  
      /* Mega Dropdown Styles */
      .has-ultra-dropdown {
        position: relative;
      }
  
      .ultra-dropdown {
        position: absolute;
        top: 100%;
        left: -10vw;
        background: oklch(0.91 0.04 119.37 / 0.95);
        color: oklch(22% .008 280);
        display: flex;
        gap: 3rem;
        padding: 2rem 3rem;
        min-width: 600px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        border-radius: 0.75rem;
        box-shadow: 0 12px 24px oklch(0% 0 0 / 0.15);
        transition: all 0.3s ease;
        z-index: 100;
        backdrop-filter: blur(10px);
      }
  
      .has-ultra-dropdown:hover .ultra-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }
  
      .ultra-column {
        flex: 1;
      }
  
      .ultra-column h4 {
        font-size: 1.1rem;
        color: oklch(28% .008 290);
        text-shadow: .1px .1px 1.3px oklch(95% .008 290);
        margin-bottom: 1rem;
        font-weight: 600;
      }
  
      .ultra-column h4 a {
        text-decoration: none;
        color: inherit;
      }
  
      .ultra-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }
  
      .ultra-column ul li {
        margin-bottom: 0.5rem;
      }
  
      .ultra-column ul a {
        text-decoration: none;
        color: oklch(14% .008 280);
        font-size: 0.9rem;
        transition: color 0.2s ease;
        display: block;
        padding: 0.25rem 0;
      }
  
      .ultra-column ul a:hover {
        color: oklch(45% .065 290);
        padding-left: 0.5rem;
      }
  
      /* Subsection styling for residential */
      .ultra-section h5 {
        font-size: 1rem;
        color: oklch(95% .015 128);
        text-shadow: .05px .05px 1.3px black;
        font-weight: 900;
        margin-bottom: 0.75rem;
        font-weight: 600;
      }
  
      .ultra-section h5 a {
        text-decoration: none;
        color: inherit;
      }
  
      .ultra-subsection {
        margin-left: 1rem;
      }
  
      .ultra-subsection li {
        margin-bottom: 0.25rem;
      }
  
      .ultra-subsection a {
        font-size: 0.85rem !important;
        color: oklch(24% .008 280) !important;
      }
  
      /* Mobile Styles */
      @media (max-width: 768px) {
        .jjc-mobile-toggle {
          display: flex;
          color:white;
          background:white;
        }
  
        .jjc-nav-menu {
          position: fixed;
          top: 0;
          right: -100%;
          width: 100%;
          height: 100vh;
          background-color: #f8f9fa;
          padding: 80px 40px;
          transition: right 0.3s ease;
          z-index: 999;
          display: flex;
          flex-direction: column;
          justify-content: flex-start;
          box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
          overflow-y: auto;
        }
  
        .jjc-nav-menu.open {
          right: 0;
        }
  
        .jjc-nav-links {
          display: flex;
          flex-direction: column;
          gap: 20px;
          margin-bottom: 40px;
        }
  
        .jjc-nav-links li {
          margin: 0;
        }
  
        .jjc-nav-links a {
          font-size: 1.1rem;
          font-weight: 500;
        }
  
        /* Mobile mega dropdown */
        .ultra-dropdown {
          position: static;
          background: transparent;
          box-shadow: none;
          opacity: 1;
          visibility: visible;
          transform: none;
          padding: 15px 0 0 20px;
          margin-top: 10px;
          min-width: auto;
          display: none;
          flex-direction: column;
          gap: 1.5rem;
          backdrop-filter: none;
        }
  
        .has-ultra-dropdown.active .ultra-dropdown {
          display: flex;
        }
  
        .ultra-column {
          margin-bottom: 1rem;
        }
  
        .ultra-column h4 {
          font-size: 1rem;
          margin-bottom: 0.75rem;
          border-bottom: 1px solid #ddd;
          padding-bottom: 0.5rem;
          text-align: center;
        }
  
        .ultra-section h5 {
          font-size: 0.95rem;
          margin-bottom: 0.5rem;
          text-align: center;
        }
  
        .ultra-subsection {
          margin-left: 0.75rem;
        }
  
        .jjc-contact-btn {
          align-self: flex-start;
          margin-top: 1rem;
        }
  
        /* Prevent body scroll when menu is open */
        body.jjc-menu-open {
          overflow: hidden;
          position: fixed;
          width: 100%;
        }
  
        /* Hide desktop hover effects on mobile */
        .has-ultra-dropdown:hover .ultra-dropdown {
          opacity: 0;
          visibility: hidden;
          transform: translateY(10px)translateX(-10vw);
        }
      }
  