             /* NAVBAR FLEX FIX */
                .header-menu {
                    height: 50px !important;
                    /* navbar choti hogi */
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

                .header-menu,
                .header-left,
                .header-bottom-center,
                .header-bottom-right {
                    padding-top: 0 !important;
                    padding-bottom: 0 !important;
                }

                .nav-logo {
                    height: 150px;
                    /* navbar height se thoda kam */
                    width: auto;
                    object-fit: contain;
                }




/* ===== ULTRA NAV CONTAINER ===== */
.ultra-nav {
    position: relative;
    width: fit-content;
    margin: 30px auto;
    padding: 18px 42px;
    border-radius: 80px;

    background:
        radial-gradient(circle at top left, rgba(255,215,120,0.15), transparent 60%),
        linear-gradient(180deg, #5e618f, #2d2c92);

    box-shadow:
        0 30px 80px rgba(0,0,0,0.75),
        inset 0 1px 1px rgba(255,255,255,0.12);
}

/* GOLD BORDER GLOW */
.ultra-nav::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(120deg, #d4af37, #f6e27a, #caa12f);
    z-index: -1;
    filter: blur(12px);
    opacity: 0.65;
}

/* MENU */
.ultra-menu {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* LINKS */
.ultra-menu li a {
    position: relative;
    padding: 14px 26px;
    border-radius: 60px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.6px;
    color: #ececec;
    text-decoration: none;
    transition: all 0.45s cubic-bezier(.25,.8,.25,1);
}

/* SHIMMER LIGHT PASS */
.ultra-menu li a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255,255,255,0.55),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.45s ease;
}

/* HOVER CINEMATIC */
.ultra-menu li a:hover {
    color: #111;
    background: linear-gradient(135deg, #d4af37, #f7e27c);
    transform: translateY(-2px);
    box-shadow:
        0 12px 40px rgba(212,175,55,0.65),
        inset 0 1px 1px rgba(255,255,255,0.45);
}

.ultra-menu li a:hover::before {
    opacity: 1;
}

/* ACTIVE ITEM */
.ultra-menu li a.active {
    background: linear-gradient(135deg, #caa12f, #f3db6b);
    color: #111;
    box-shadow:
        0 15px 45px rgba(212,175,55,0.75);
}

/* SLOW FLOAT ANIMATION */
@keyframes floatGlow {
    0% { box-shadow: 0 30px 80px rgba(0,0,0,0.75); }
    50% { box-shadow: 0 35px 90px rgba(212,175,55,0.35); }
    100% { box-shadow: 0 30px 80px rgba(0,0,0,0.75); }
}

.ultra-nav {
    animation: floatGlow 6s ease-in-out infinite;
}

/* =========================================
   FINAL MOBILE MENU – GUARANTEED WORKING
========================================= */

/* ===== MOBILE MENU BUTTON ===== */
.mobile-menu-btn {
    position: fixed;
    top: 16px;
    right: 16px;
    font-size: 32px;
    padding: 10px 16px;
    background: #0d2b81;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    z-index: 99999;
    display: none;
}

/* ===== MOBILE OVERLAY ===== */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 99998;
}

/* ===== MOBILE MENU PANEL ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: #0d2b81;
    padding: 80px 25px;
    transition: right 0.35s ease;
    z-index: 99999;

    /* FORCE VISIBILITY */
    display: block;
    visibility: visible;
}

/* ===== OPEN STATE ===== */
.mobile-menu.active {
    right: 0;
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ===== CLOSE BUTTON ===== */
.close-menu-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}

/* ===== MENU LIST ===== */
.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li {
    margin: 22px 0;
}

.mobile-menu-list li a {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
}

/* ===== RESPONSIVE RULES ===== */

/* MOBILE */
@media (max-width: 991px) {
    .desktop-menu,
    .ultra-nav {
        display: none !important;
    }

    .mobile-menu-btn {
        display: block !important;
    }
}

/* DESKTOP */
@media (min-width: 992px) {
    .mobile-menu,
    .mobile-menu-btn,
    .mobile-overlay {
        display: none !important;
    }
}

/* ===== PREVENT MENU CUT ===== */
body,
.page-wrapper,
.main-wrapper {
    overflow-x: visible !important;
}

/* ===== TRACKING BUTTON : NEW MODERN LOOK ===== */
.btn-secondary{
    background: linear-gradient(135deg, #0b2d4d, #1f5fa3) !important;
    color: #ffffff !important;
    padding: 12px 34px !important;
    border-radius: 50px !important;   /* pill shape */
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none !important;
    border: none !important;
    box-shadow: 0 6px 18px rgba(11,45,77,0.45);
    transition: all 0.3s ease;
}

/* Hover effect */
.btn-secondary:hover{
    background: linear-gradient(135deg, #d4af37, #f7e27c) !important;
    transform: translateY(-2px);
    box-shadow:0 12px 40px rgba(212,175,55,0.65);
    color:#fff !important;
}

/* Optional icon */
.btn-secondary::after{
    content: "➜";
    margin-left: 10px;
    font-size: 16px;
}
