.elementor-27 .elementor-element.elementor-element-5b9651f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-27 .elementor-element.elementor-element-a328530{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;z-index:3;border-radius:0px 1px 0px 0px;}.elementor-27 .elementor-element.elementor-element-a328530.elementor-element{--align-self:stretch;--flex-grow:0;--flex-shrink:0;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(max-width:767px){.elementor-27 .elementor-element.elementor-element-a328530{width:var( --container-widget-width, 371px );max-width:371px;--container-widget-width:371px;--container-widget-flex-grow:0;}}/* Start custom CSS for html, class: .elementor-element-a328530 *//* ========================================= */
/* BASE RESET                                */
/* ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
}

body {
    background-color: #f4f6f9;
    width: 100%;
    overflow-x: hidden;
}

/* ========================================= */
/* VIP HEADER & RED BANNER                   */
/* ========================================= */
.vip-header {
    width: 100%;
    display: block;
}

.top-banner {
    background: linear-gradient(to right, #7a0000, #cc0000, #7a0000);
    text-align: center;
    padding: 25px 5px;
    border-bottom: 2px solid #ffd700;
    width: 100%;
}

.top-banner h1 {
    color: #ffffff;
    font-size: clamp(28px, 5vw, 42px); 
    font-weight: 900;
    letter-spacing: 2px;
    white-space: nowrap; 
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
    margin-bottom: 8px;
}

.top-banner p {
    color: #ffffff;
    font-size: clamp(12px, 2vw, 16px);
    font-weight: 600;
    letter-spacing: 1px;
    white-space: nowrap; 
    text-transform: uppercase;
}

.gold-text {
    color: #ffd700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* ========================================= */
/* VIP DARK BLUE NAVIGATION (DESKTOP - PATLA)*/
/* ========================================= */
.main-nav {
    background: linear-gradient(to right, #01031c, #030846, #01031c);
    position: relative;
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* Text aur icon ko perfect height dene ke liye */
    padding: 0 20px; 
    min-height: auto;
}

/* Hide Mobile Menu Button on Desktop */
.menu-toggle {
    display: none; 
}

/* Desktop Horizontal Links */
.nav-links {
    list-style: none;
    display: flex; 
    flex-direction: row;
    margin: 0;
}

.nav-links li {
    display: flex;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links li:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 20px; /* Padding kam karke nav bar PATLA kiya gaya hai */
    display: flex;
    align-items: center; /* Text ko beecho-beech center karta hai */
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background-color: #1a2066;
    color: #ffd700;
}

/* Right Search Icon */
.search-right {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0 15px; /* Faltu upar-niche ki jagah hata di */
}

.search-right:hover {
    color: #ffd700;
    transform: scale(1.1);
}

/* ========================================= */
/* 🔥 MOBILE UNIQUE FLOATING DESIGN 🔥       */
/* ========================================= */
@media screen and (max-width: 850px) {
    
    /* Red Banner ko niche se gool (curved) kiya */
    .top-banner {
        padding: 30px 10px 50px; /* Overlap ke liye niche thoda space */
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
        border-bottom: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    /* Transparent background taki float effect dikhe */
    .main-nav {
        background: transparent;
        top: -30px; /* Menu bar ko banner ke upar chadhaya */
        margin-bottom: -30px;
        z-index: 10;
    }

    /* Floating Pill-Shaped Mobile Bar */
    .nav-container {
        background: linear-gradient(to right, #01031c, #030846);
        width: 92%;
        margin: 0 auto;
        border-radius: 50px; /* Gool design */
        padding: 10px 20px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(255, 215, 0, 0.3); /* Premium gold border */
        align-items: center;
    }

    /* Show Mobile Menu Button */
    .menu-toggle {
        display: flex; 
        color: #ffffff;
        font-size: 16px;
        cursor: pointer;
        align-items: center;
        gap: 10px;
        font-weight: 600;
    }

    /* White Floating App-Style Dropdown */
    .nav-links {
        display: none; 
        position: absolute;
        top: 60px; /* Pill menu ke theek niche */
        left: 5%;
        width: 90%;
        background-color: #ffffff; /* Safed background premium look ke liye */
        flex-direction: column;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        overflow: hidden;
    }

    .nav-links.show-menu {
        display: flex;
    }

    .nav-links li {
        border-right: none;
        border-left: none !important;
        border-bottom: 1px solid #eeeeee; /* Halka line */
    }

    .nav-links a {
        color: #030846; /* Text dark blue */
        padding: 16px 20px;
    }

    .nav-links a:hover {
        background-color: #f4f6f9;
        color: #cc0000;
        padding-left: 25px; /* Slide right effect */
    }
    
    .search-right {
        padding: 0;
    }
}/* End custom CSS */