 /* header css start */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Arial, sans-serif;
    }

   .header {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
}


.header.scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

    .container {
        max-width: 1200px;
        margin: auto;
        padding: 0px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    /* Header logo wrapper */
    .logo {
        display: flex;
        align-items: center;
        z-index: 1001; /* Keep logo above mobile menu */
    }

    /* Logo image */
    .header-logo {
        height: 80px;        /* adjust: 40px / 50px / 60px */
        width: auto;         /* keeps aspect ratio */
        object-fit: contain; /* prevents distortion */
    }

    /* NAV */
    .nav ul {
        list-style: none;
        display: flex;
        gap: 25px;
    }

    .nav a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
    }

    .right a {
        margin-left: 20px;
        text-decoration: none;
        color: #333;
    }

    /* MEGA MENU */
    .mega-menu {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 80%;
        width: 1100px;
        background: #fff;
        padding: 30px;
        display: none;
        box-shadow: 0 15px 30px rgba(0,0,0,.1);
        z-index: 1000;
    }

    .mega:hover .mega-menu {
        display: block;
    }
    .mega:hover .mega-menu,
    .mega-menu:hover {
        display: block;
    }

    .mega-menu::before {
        content: "";
        position: absolute;
        top: -20px;
        left: 0;
        width: 100%;
        height: 20px;
    }
    .mega-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .col h4 {
        margin-bottom: 15px;
    }

    .col a {
        display: block;
        margin-bottom: 10px;
        font-size: 14px;
        color: #555;
    }

    .col a:hover {
        color: #ff6a00;
    }

    .more {
        color: #ff6a00;
        font-weight: bold;
    }

    /* IMAGE */
    .image-col img {
        width: 100%;
        border-radius: 6px;
    }

    .menu-toggle {
        display: none;
        font-size: 22px;
        cursor: pointer;
        z-index: 1001; /* Keep hamburger above mobile menu */
        background: none;
        border: none;
        color: #333;
        padding: 10px;
    }

    /* RESPONSIVE */
/* ===========================
   MOBILE HEADER + MEGA MENU
=========================== */
@media (max-width: 992px) {

    .menu-toggle {
        display: block;
    }

    /* Mobile overlay */

.nav {
        pointer-events: none;
    }
    .nav.active {
        pointer-events: auto;
    }
    .nav ul {
        pointer-events: auto;
    }
    .nav {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.7);
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        z-index: 9999;
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
    }

    /* Drawer */
    .nav ul {
        position: absolute;
        left: -280px;
        top: 0;
        width: 280px;
        height: 100%;
        background: #fff;
        padding: 80px 15px 20px;
        display: flex;
        flex-direction: column;
        transition: .3s;
        overflow-y: auto;
    }

    .nav.active ul {
        left: 0;
    }

    .nav li {
        border-bottom: 1px solid #eee;
    }

    .nav a {
        padding: 14px 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .menu-close {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 22px;
        background: none;
        border: none;
        cursor: pointer;
        display: block !important;
    }

    /* Disable hover mega menu */
    .mega:hover .mega-menu,
    .mega-menu:hover {
        display: none !important;
    }

    /* Mobile mega menu */
    .mega-menu {
        position: static;
        display: none;
        width: 100%;
        padding: 10px;
        background: #f9f9f9;
        box-shadow: none;
        transform: none;
    }

    .mega-menu.active {
        display: block;
    }

    .mega-btn::after {
        content: "▾";
        font-size: 12px;
    }

    .mega-btn.active::after {
        transform: rotate(180deg);
    }

    .mega-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .right {
        display: none;
    }

    /* Sub-sub menu */
    .sub-links {
        display: none;
        padding-left: 12px;
    }

    .sub-links.active {
        display: block;
    }

    .sub-toggle {
        cursor: pointer;
        position: relative;
        padding-right: 18px;
    }

    .sub-toggle::after {
        content: "+";
        position: absolute;
        right: 0;
        font-weight: bold;
    }

    .sub-toggle.active::after {
        content: "-";
    }

     .mega.open .mega-menu {
        display: block !important;
    }

    /* Style for the mega button when active */
    .mega-btn.active::after {
        transform: rotate(180deg);
    }

    /* Ensure mega menu appears properly */
    .mega-menu {
        position: static;
        display: none;
        width: 100%;
        padding: 15px;
        background: #f9f9f9;
        box-shadow: none;
        transform: none;
        margin-top: 5px;
    }

    /* Better styling for mega grid on mobile */
    .mega-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Style for subcategory headings */
    .col h4 {
        margin-bottom: 10px;
        font-size: 16px;
        color: #333;
        border-bottom: 1px solid #ddd;
        padding-bottom: 5px;
    }

    /* Style for package links */
    .col a {
        padding: 8px 10px;
        margin-bottom: 5px;
        background: #fff;
        border-radius: 4px;
        transition: all 0.3s;
    }

    .col a:hover {
        background: #ff6a00;
        color: #fff;
        padding-left: 15px;
    }

    /* Style for "No packages" message */
    .text-gray-400 {
        color: #999;
        font-style: italic;
        padding: 5px 10px;
        display: block;
    }
}