/* ============================= */
/* ===== HEADER BACKGROUND ===== */
/* ============================= */

.pkp_structure_head {
    background-color: #0F2A44 !important;
    padding: 20px 0 !important;
}

.pkp_navigation_primary_row {
    background-color: #0F2A44 !important;
}


/* ============================= */
/* ===== HEADER LAYOUT ===== */
/* ============================= */

.pkp_head_wrapper {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;

    display: flex !important;
    align-items: center !important;

    min-height: 110px !important;
}


/* ============================= */
/* ===== LOGO ===== */
/* ============================= */

.pkp_site_name img {
    max-height: 100px !important;
    width: auto !important;
}


/* ============================= */
/* ===== MENU POSITION ===== */
/* ============================= */

.pkp_navigation_primary {
    display: flex !important;
    align-items: center !important;
    margin-left: 40px !important;
}


/* ============================= */
/* ===== MENU SPACING ===== */
/* ============================= */

.pkp_navigation_primary > li {
    margin-right: 20px !important;
}


/* ============================= */
/* ===== MENU TEXT ===== */
/* ============================= */

.pkp_navigation_primary a {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    white-space: nowrap !important;
}


/* ============================= */
/* ===== MENU HOVER ===== */
/* ============================= */

.pkp_navigation_primary a:hover {
    color: #C8A75A !important;
}


/* ============================= */
/* ===== SUBMENU ===== */
/* ============================= */

.pkp_navigation_primary ul {
    background-color: #0F2A44 !important;
    width: 200px !important;
    border: none !important;
}

.pkp_navigation_primary ul li {
    border-bottom: 1px solid #EAEAEA !important;
}

.pkp_navigation_primary ul li a {
    color: #ffffff !important;
    padding: 10px 15px !important;
}

.pkp_navigation_primary ul li a:hover {
    color: #C8A75A !important;
    background-color: #0F2A44 !important;
}


/* ============================= */
/* ===== REMOVE ADMIN NAME ===== */
/* ============================= */

.pkp_navigation_user {
    display: none !important;
}


/* ============================= */
/* ===== SEARCH ICON FIX ===== */
/* ============================= */

.pkp_search {
    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%);
}

/* ===== FIX 1: SEARCH POSITION CORRECT ===== */

.pkp_search {
    position: static !important;
    margin-left: auto !important;
    display: flex !important;
    align-items: center;
}


/* ===== FIX 2: LOGO GAP REDUCE ===== */

.pkp_navigation_primary {
    margin-left: 15px !important;   /* पहले 40 था */
}


/* ===== FIX 3: SUBMENU TEXT WRAP ===== */

.pkp_navigation_primary ul li a {
    white-space: normal !important;
    line-height: 1.4 !important;
}


/* ===== OPTIONAL: SUBMENU WIDTH थोड़ा बढ़ाएँ ===== */

.pkp_navigation_primary ul {
    width: 220px !important;
}