      body {
            background-color: #F1F2F2;
        }

        * {
            padding: 0;
            margin: 0;
        }

         /* ---------------------- Desktop Navbar ---------------------- */
        .desktop-navbar {
            display: flex;
            align-items: center;
            padding: 12px 10px;
            background: #fff;
            position: relative;
            z-index: 1000;
        }

        .desktop-navbar .logo {
            flex-shrink: 0;
        }

        .desktop-navbar .logo img {
            max-height: 50px;
        }

        .desktop-navbar .menu {
            list-style: none;
            display: flex;
            margin: 0;
            padding: 0;
            justify-content: center;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .desktop-navbar .menu li {
            position: relative;
            margin: 0 10px;
        }

        .desktop-navbar .menu li a {
            text-decoration: none;
            color: #000;
            font-size: 14px;
            padding: 8px 5px;
            display: block;
        }

        .desktop-navbar .menu li a:hover {
            color: #60BD6F;
        }


        .mega-parent {
            position: relative;
        }

        .mega-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 60%;
            transform: translateX(-50%);
            background: #fff;
            padding: 2rem;
            z-index: 9999;
            width: auto;
            width: 700px;
        }


        .mega-parent:hover .mega-menu {
            display: flex;
            justify-content: left;
        }


        .mega-content {
            display: grid;
            grid-auto-flow: column;
            gap: 2rem;
        }

        .mega-column {
            min-width: 280px;
        }

        .mega-column h3 {
            margin-bottom: 1rem;
            font-size: 1.2rem;
            color: #e63946;
            padding: 10px 0;
            border-bottom: 1px solid #e63946;
            display: inline-block;
        }

        .mega-column a {
            display: block;
            padding: 0.3rem 0;
            font-size: 13px;
            text-decoration: none;
            color: #333;
            transition: color 0.3s ease;
        }

        .mega-column a:hover {
            color: #e63946;
        }
            /*-------search bar---------*/
    .suggestions-box {
  position: absolute;
   top: calc(100% + 2px);
  left: 10px;
  width: 100%;
  max-height: 250px;
  overflow-y: auto;
  background: #fff;
  z-index: 9999;
}

.search-item {
  display: flex;
  gap: 10px;
  padding: 8px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.search-item img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.search-item:hover {
  background: #f5f5f5;
}

        .search-bar {
			position:relative;
            margin-left: auto;
            display: flex;
            align-items: center;
            border: 1px solid #ccc;
            border-radius: 20px;
            padding: 5px 10px;
            background: #f9f9f9;
            margin-right: 40px;
        }

        .search-bar input {
            border: none;
            outline: none;
            padding: 5px 30px;
            font-size: 14px;
            background: transparent;
        }

        .search-bar button {
            border: none;
            background: transparent;
            cursor: pointer;
            color: #333;
            font-size: 16px;
        }

        .search-bar button:hover {
            color: #60BD6F;
        }

        /* ---------------------- Mobile Navbar ---------------------- */
       .mobile-header {
  display: none;
  align-items: center;
  padding: 17px 15px;
  background: #fff;
  position: fixed;  /* ✅ fixed at top */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* optional, adds nice depth */
}


        .mobile-header .mobile-logo {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }

        .mobile-header .mobile-logo img {
            max-height: 50px;
            display: block;
        }
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
        .mobile-menu {
    position: fixed;
  top: 64px; /* previously 68px */
  left: 0;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: #fff;
  padding: 20px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 2000; 
}

        .mobile-menu.active {
            transform: translateX(0);
        }

        .mobile-menu a,
        .submenud-toggle,
        .back-arrow {
            display: block;
            padding: 10px 0;
            color: #000;
            text-decoration: none;
            font-size: 14px;
            border-bottom: 1px solid #eee;
            cursor: pointer;
        }

        .mobile-menu a:hover,
        .submenud-toggle:hover {
            color: #60BD6F;
        }

        .submenud {
            display: none;
            padding-left: 7px;
        }

        .submenud a {
            padding-left: 17px;
        }

        .back-arrow {
            display: none;
            align-items: center;
            cursor: pointer;
            margin-bottom: 10px;
        }

        .back-arrow img {
            width: 18px;
            margin-right: 8px;
            vertical-align: middle;
        }

        .submenud-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 10px;
            padding-bottom: 5px;
            border-bottom: 1px solid #ddd;
            color: #e63946;
        }




        /* Mobile Search Icon */
        .mobile-search-icon {
            position: fixed;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            z-index: 9999;
        }

        /* Fullscreen Overlay */
        .mobile-search-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(3px);
            z-index: 9998;
            justify-content: center;
            align-items: center;
        }

        /* Search Container */
        .search-container {
            display: flex;
            width: 90%;
            max-width: 500px;
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
        }

        .search-container input {
            flex: 1;
            padding: 12px 16px;
            border: none;
            font-size: 16px;
        }

        .search-container button {
            background: #ff6f61;
            border: none;
            padding: 0 16px;
            cursor: pointer;
            color: white;
            font-size: 18px;
        }


        @media (max-width: 991px) {
            .desktop-navbar {
                display: none;
            }

            .mobile-header {
                display: flex;
            }
        }
        .mega-column .inner-columns {
    display: flex;
    gap: 20px; /* columns ke beech gap */
}

.mega-column .inner-column {
    display: flex;
    flex-direction: column;
    gap: 5px; /* links ke beech gap */
}

/* Only About Us mega menu */
.desktop-navbar .menu li.mega-parent:nth-child(2) .mega-menu,
.desktop-navbar .menu li.mega-parent:nth-child(4) .mega-menu,
.desktop-navbar .menu li.mega-parent:nth-child(5) .mega-menu,
.desktop-navbar .menu li.mega-parent:nth-child(6) .mega-menu,
.desktop-navbar .menu li.mega-parent:nth-child(7) .mega-menu {
    width: auto;
    max-width: 170px;
    padding: 1.5rem;
    left: 50% !important;
    transform: translateX(-50%) !important;
}
