*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,body{
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
}

.container,
.wrapper {
    max-width: 100% !important;
}

/* MAIN PAGE */
.pkp_structure_page {
    margin: 0 auto;
    max-width: 100%;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* ================= HEADER DESIGN ================= */

/* HEADER BACKGROUND (KEEP YOUR IMAGE) */
/* FULL WIDTH HEADER FIX */
.pkp_structure_head {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* REMOVE CONTAINER LIMIT */
.pkp_head_wrapper,
.has_site_logo .pkp_head_wrapper {
    width: 100%;
    max-width: 100% !important;
    margin: 0;
    
    position: relative;
    padding-top: 70px;

    background: linear-gradient(135deg, #0B3D2E, #1F7A63, #8DC63F);
    background-size: 400% 400%;
    animation: gradientFlow 10s ease infinite;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

/* IF OJS CONTAINER APPLYING WIDTH */
.pkp_structure_page {
    max-width: 100% !important;
    padding: 0 !important;
}
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.pkp_head_wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(6px);
}
/* HEADER OVERLAY (NEW EFFECT) */
.pkp_structure_head {
    width: 100%;
    background: linear-gradient(135deg, #E9EFEA, #E9EFEA);
    color: #06281F;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    position: relative;
    z-index: 999;
}

/* SITE NAME CENTER */
.pkp_site_name_wrapper {
    width: 88%;
    /* text-align: center; */
    margin-bottom: 10px;
       /* display: flex; */
    justify-content: center;
}

h1.pkp_site_name {
    text-align: center;
}

.pkp_site_name a {
    font-size: 26px;
    font-weight: 700;
    color: #06281F;
    text-decoration: none;
    display: inline-block;
    animation: floatText 3s ease-in-out infinite;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-decoration: none;
}
.pkp_site_name img {
    height: 60px;
    width: auto;
}
.pkp_site_name .is_img img + span,
.pkp_site_name a::after {
    content: "IJRDO Journal of Forestry, Wildlife and Environment";
    font-size: 24px;
    font-weight: 600;
    color: #06281F;
    position: relative;
    margin-left: 0px;
}
.pkp_site_name .is_img img {
    display: block;
    max-height: 164px;
    max-width: 100%;
    width: auto;
    height: auto;
}
/* REMOVE OLD TEXT STYLE IF ANY */
.pkp_site_name .is_text {
    display: none;
}


@media (max-width: 600px) {
    .pkp_site_name a {
        flex-direction: column;
        text-align: center;
    }

    .pkp_site_name a::after {
        font-size: 18px;
    }
}
/* FLOAT ANIMATION */
@keyframes floatText {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

/* NAVIGATION */
.pkp_navigation_primary_row {
    width: 60%;
    padding-left: 63px;
    padding-right: 50px;
}

.pkp_navigation_primary {
    display: flex;
    gap: 20px;
    list-style: none;
}

.pkp_navigation_primary li a {
    color: #06281F;
    text-decoration: none;
    font-size: 15px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: 0.3s;
}

.pkp_navigation_primary li a:hover {
    /* background: #3e921e; */
    transform: translateY(-2px);
}

/* DROPDOWN */
.dropdown-menu {
    background: #0B3D2E;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    padding: 10px 0;
    border: none;
}

.dropdown-menu li a {
    color: #06281F;
    padding: 10px 20px;
    display: block;
}

.dropdown-menu li a:hover {
    background: #1F7A63;
}

/* SEARCH */
.pkp_search {
    width: 35%;
    display: flex;
    justify-content: flex-end;
    gap: 5px;
}

.pkp_search input {
    padding: 8px 12px;
    border-radius: 20px;
    border: none;
    outline: none;
    width: 180px;
}

.pkp_search button {
    padding: 8px 15px;
    border-radius: 20px;
    border: none;
    background: #1F7A63;
    color: #06281F;
    cursor: pointer;
}

.pkp_search button:hover {
    background: #1F7A63;
}

/* LOGIN / REGISTER */
.pkp_navigation_user_wrapper {
    position: absolute;
    top: 15px;
    right: 20px;
}

.pkp_navigation_user {
    display: flex;
    gap: 10px;
    list-style: none;
     position: absolute;
    top: -10px !important;
    right: 20px;
    z-index: 9999;
}

.pkp_navigation_user li a {
    padding: 8px 15px;
    border-radius: 15px;
    background: #1F7A63;
    color: #06281F;
    text-decoration: none;
    font-size: 14px;
    /* box-shadow: 0 5px 15px rgba(0,0,0,0.3); */
}

.pkp_navigation_user li a:hover {
    transform: translateY(-2px) scale(1.05);
}

/* ================= FOOTER ================= */
 
/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .pkp_navigation_primary_row {
        width: 100%;
        margin-top: 10px;
    }

    .pkp_search {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
}

@media (max-width: 600px) {

    .pkp_site_name a {
        font-size: 18px;
    }

    .pkp_navigation_primary {
        flex-direction: column;
        align-items: center;
    }

    .pkp_search {
        flex-direction: column;
        align-items: center;
    }

    .pkp_search input {
        width: 100%;
    }

    .pkp_navigation_user_wrapper {
        position: static;
        margin-top: 10px;
        text-align: center;
    }
}

/* NAV FULL WIDTH */
.pkp_navigation_primary_row {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    border-radius: 15px;
    background-color: #8DC63F;
}

/* INNER WRAPPER FULL WIDTH */
.pkp_navigation_primary_wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* MENU LEFT + SEARCH RIGHT */
#navigationPrimary {
    width: auto;
    flex: 1;
}

/* SEARCH RIGHT ALIGN */
.pkp_search {
    margin-left: auto;
}

/* PROFILE MENU TOP RIGHT FIX */
.pkp_navigation_user {
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 9999;
}

/* REMOVE DEFAULT FLOW IMPACT */
.pkp_navigation_user li.profile {
    list-style: none;
}
.pkp_site_name .is_text {
    font-size: 24px;
    text-transform: uppercase;
        position: relative;
    left: 6em;
}
/* STYLE BUTTON */
.pkp_navigation_user li.profile > a {
    /* background: linear-gradient(145deg, #ff7a18, #ffb347); */
    color: #06281F;
    padding: 8px 16px;
    /* border-radius: 25px; */
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
       
}

/* DROPDOWN ALIGN RIGHT */
/* .pkp_navigation_user .dropdown-menu {
    right: 0;
    left: auto;
} */

/* PARENT FIX */
.pkp_navigation_user li.profile {
    position: relative;
}

/* DROPDOWN SAME WIDTH AS BUTTON */
.pkp_navigation_user .dropdown-menu {
    top: 100% !important;
    left: 0 !important;
    right: auto !important;

    transform: none !important;   /* remove unwanted shift */
    
    min-width: 100% !important;   /* button ke equal width */
    width: 100% !important;

    margin-top: 5px;
    border-radius: 10px;
    overflow: hidden;
}

/* DROPDOWN ITEMS FULL WIDTH */
.pkp_navigation_user .dropdown-menu li a {
    width: 100%;
    display: block;
    color: #06281F;
}

.pkp_head_wrapper .pkp_search.is_open input[type="text"] {
    border-bottom: medium none currentcolor;
    background: rgba(0, 0, 0, 0.05);
    border-left: 1px solid rgb(221, 221, 221);
}

div#customblock-scopus {
    display: none;
}div#customblock-PayPal {
    display: none;
}


.pkp_head_wrapper .pkp_search.is_open{
        min-width: 0%;
    width: 30%;
    background-color: #8DC63F;
}
.pkp_head_wrapper .pkp_search .search_cancel:before {
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    content: "";
    width: 20px;
    height: 20px;
    line-height: 20px;
}

.pkp_head_wrapper .pkp_search.is_open .search_controls .search_prompt {
    background: #8DC63F;
    color: #06281F;
}

/* footer */











/* REMOVE OJS WIDTH LIMIT */
.pkp_structure_footer,
.pkp_footer_content {
    max-width: 100% !important;
    padding: 0 !important;
}

/* FULL WIDTH BACKGROUND */
.custom-footer {
    width: 100%;
    background: linear-gradient(135deg, #0B3D2E, #06281F);
    color: #fff;
    padding: 50px 40px 20px;
}

/* GRID */
.footer-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-left: 5rem;
}

/* COLUMN */
.footer-col h3 {
    color: #A8D5A2;
    margin-bottom: 15px;
}

.footer-col p,
.footer-col li {
    font-size: 14px;
    line-height: 1.8;
}

/* LINKS */
.footer-col a {
    color: #ffffffcc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #8DC63F;
    padding-left: 6px;
}

/* LIST */
.footer-col ul {
    list-style: none;
    padding: 0;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid #ffffff22;
    margin-top: 30px;
    padding-top: 15px;
    text-align: center;
    font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.pkp_structure_footer_wrapper {
    background: rgba(0, 0, 0, 0.05);
    border-top: 1px solid #ddd;
    border-bottom: 0px solid #3e921e !important;
}
.pkp_structure_footer, .pkp_footer_content {
 
    padding: 0px;
    width: 100%;
}