
      /* Full Screen Mega Menu Styles - Desktop Only */
      @media (min-width: 992px) {
        .main-menu .navigation > li.has-mega-menu {
          position: static;
        }
 
        /* Full Screen Mega Menu Container */
        .fullscreen-mega-menu {
          position: fixed;
          top: 100%;
          left: 0;
          width: 100%;
          height: 60vh;
          /* background: #fff; */
          background: linear-gradient(135deg, #B69D74 0%, #D8BFAA 50%, #F5E8D0 100%);
          z-index: 9999;
          opacity: 0;
          visibility: hidden;
          transform: translateY(-20px);
          transition: all 0.4s ease;
          overflow-y: auto;
          border-radius: 20px;
          box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }
        .fullscreen-mega-menu::-webkit-scrollbar {
          width: 8px;
        }
        .fullscreen-mega-menu::-webkit-scrollbar-thumb {
          background-color: rgba(0,0,0,0.2);
          border-radius: 4px;
        }
        .body-no-scroll {
          overflow: hidden;
          height: 100vh; /* prevent mobile overscroll */
        }
 
        /* Remove hover behavior */
        .has-mega-menu .fullscreen-mega-menu {
          opacity: 0;
          visibility: hidden;
          transform: translateY(-20px);
          transition: all 0.4s ease;
        }
 
        /* Show mega menu when active */
        .has-mega-menu.active .fullscreen-mega-menu {
          opacity: 1;
          visibility: visible;
          transform: translateY(0);
        }
 
        /* Mega Menu Header */
        .mega-menu-header {
          background: linear-gradient(135deg, #B69D74 0%, #D8BFAA 50%, #F5E8D0 100%);
          color: #fff;
          padding: 40px 0;
          margin-bottom: 30px;
        }
 
        .menu-title h2 {
          font-size: 36px;
          font-weight: 700;
          margin-bottom: 10px;
          color: #fff;
        }
 
        .menu-title p {
          font-size: 16px;
          opacity: 0.9;
          margin: 0;
        }
 
        /* Mega Menu Content */
        .mega-menu-content {
          padding: 30px 0 50px;
          min-height: 400px;
        }
 
        .mega-menu-col {
          padding: 20px;
          background: #f8f9fa;
          border-radius: 8px;
          height: 100%;
          transition: all 0.3s ease;
          margin-bottom: 20px;
        }
 
        .mega-menu-col:hover {
          transform: translateY(-5px);
          box-shadow: 0 10px 30px rgba(255, 94, 20, 0.1);
          background: #fff;
        }
 
        .col-icon {
          width: 50px;
          height: 50px;
          /* background: #B69D74; */
          background: #00467F;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-bottom: 20px;
        }
 
        .col-icon i {
          font-size: 24px;
          color: #fff;
        }
 
        .mega-menu-title {
          font-size: 18px;
          font-weight: 600;
          color: #1b1e2d;
          margin-bottom: 15px;
          padding-bottom: 10px;
          border-bottom: 2px solid #00467F;
          text-transform: uppercase;
        }
 
        .mega-menu-links {
          list-style: none;
          padding: 0;
          margin: 0;
        }
 
        .mega-menu-links li {
          margin-bottom: 12px;
        }
 
        .mega-menu-links li a {
          color: #5c6770;
          font-size: 14px;
          text-decoration: none;
          transition: all 0.3s ease;
          display: block;
          padding: 5px 0;
        }
 
        .mega-menu-links li a:hover {
          color: #00467F;
          padding-left: 8px;
        }
 
        /* Mega Menu Footer */
        .mega-menu-footer {
          background: #f0f0f0;
          padding: 30px 0;
          border-top: 1px solid #e0e0e0;
        }
 
        .cta-text h4 {
          font-size: 20px;
          font-weight: 600;
          color: #1b1e2d;
          margin-bottom: 5px;
        }
 
        .cta-text p {
          color: #5c6770;
          margin: 0;
        }
 
        .theme-btn.btn-style-onee {
          display: inline-block;
          padding: 12px 30px;
          background: #B69D74;
          color: #fff;
          border-radius: 30px;
          text-decoration: none;
          font-weight: 500;
          transition: all 0.3s ease;
        }
 
        .theme-btn.btn-style-onee:hover {
          background: #1b1e2d;
          transform: translateY(-2px);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
 
        /* Close Button */
        .mega-menu-close {
          position: absolute;
          top: 20px;
          right: 30px;
          width: 40px;
          height: 40px;
          background: #fff;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          cursor: pointer;
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          transition: all 0.3s ease;
        }
 
        .mega-menu-close:hover {
          background: #ff5e14;
          color: #fff;
          transform: rotate(90deg);
        }
      }
 
      /* Mobile Menu Styles - Keeping your original theme */
      @media (max-width: 991px) {
        /* Hide desktop mega menu */
        .fullscreen-mega-menu {
          display: none !important;
        }
 
       
      }