/* =========================================================
   PHARMAGATE LIFESCIENCES
   CUSTOM HEADER
   FULLY RESPONSIVE
========================================================= */


/* =========================================================
   GLOBAL HEADER RESET
========================================================= */

.pharmagate-header,
.pharmagate-header *,
.pharmagate-header *::before,
.pharmagate-header *::after {
    box-sizing: border-box;
}


/* =========================================================
   HEADER
========================================================= */

.pharmagate-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;

    width: 100%;
    max-width: 100%;

    margin: 0;
    padding: 0;

    background: #ffffff;

    z-index: 999999;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   HEADER INNER
========================================================= */

.pharmagate-header-inner {
    width: 100%;
    max-width: 1400px;

    min-height: 90px;

    margin: 0 auto;

    padding: 0 35px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.pharmagate-logo {
    flex: 0 0 auto;

    display: flex;

    align-items: center;

    min-width: 0;
}

.pharmagate-logo a {
    display: flex;

    align-items: center;

    text-decoration: none;

    line-height: 0;
}

.pharmagate-logo img,
.pharmagate-logo .custom-logo {
    display: block;

    width: auto;

    max-width: 280px;

    max-height: 70px;

    height: auto;
}


/* =========================================================
   NAVIGATION
========================================================= */

.pharmagate-navigation {
    position: relative;

    z-index: 999999;

    margin-left: auto;

    flex: 0 0 auto;
}


/* =========================================================
   MAIN MENU
========================================================= */

.pharmagate-menu {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 35px;

    width: auto;

    margin: 0;
    padding: 0;

    list-style: none;
}

.pharmagate-menu > li {
    position: relative;

    display: block;

    margin: 0;
    padding: 0;

    list-style: none;
}


/* =========================================================
   MAIN MENU LINKS
========================================================= */

.pharmagate-menu > li > a {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    min-height: 90px;

    padding: 0;

    color: #111111;

    font-family: "Rajdhani", sans-serif;

    font-size: 18px;

    font-weight: 600;

    line-height: 1;

    text-decoration: none;

    white-space: nowrap;

    transition: color 0.2s ease;
}

.pharmagate-menu > li > a:hover {
    color: #e5252a;
}


/* =========================================================
   ABOUT US PARENT
========================================================= */

.pharmagate-about-item {
    position: relative !important;
}


/* =========================================================
   ABOUT US ARROW
========================================================= */

.pharmagate-about-item > a::after {
    content: "▾";

    display: inline-block;

    margin-left: 5px;

    font-size: 11px;

    line-height: 1;

    color: currentColor;
}


/* =========================================================
   DESKTOP DROPDOWN
========================================================= */

@media screen and (min-width: 901px) {

    .pharmagate-about-item > .sub-menu {
        position: absolute;

        top: 100%;
        left: 0;

        display: block;

        width: max-content;

        min-width: 220px;

        margin: 0;
        padding: 8px 0;

        background: #ffffff;

        border-top: 3px solid #e5252a;

        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);

        list-style: none;

        opacity: 0;

        visibility: hidden;

        transform: translateY(8px);

        pointer-events: none;

        z-index: 9999999;

        transition:
            opacity 0.2s ease,
            visibility 0.2s ease,
            transform 0.2s ease;
    }


    /* Desktop hover */

    .pharmagate-about-item:hover > .sub-menu {
        opacity: 1;

        visibility: visible;

        transform: translateY(0);

        pointer-events: auto;
    }


    /* Desktop click */

    .pharmagate-about-item.dropdown-open > .sub-menu {
        opacity: 1 !important;

        visibility: visible !important;

        transform: translateY(0) !important;

        pointer-events: auto !important;
    }

}


/* =========================================================
   DROPDOWN ITEMS
========================================================= */

.pharmagate-menu .sub-menu {
    margin: 0;

    padding: 0;

    list-style: none;
}

.pharmagate-menu .sub-menu li {
    display: block;

    width: 100%;

    margin: 0;
    padding: 0;

    list-style: none;
}

.pharmagate-menu .sub-menu li a {
    display: block;

    width: 100%;

    margin: 0;

    padding: 13px 20px;

    color: #111111;

    background: #ffffff;

    font-family: "Rajdhani", sans-serif;

    font-size: 16px;

    font-weight: 600;

    line-height: 1.3;

    text-decoration: none;

    white-space: nowrap;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.pharmagate-menu .sub-menu li a:hover {
    color: #e5252a;

    background-color: #f5f5f5;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.pharmagate-menu-toggle {
    display: none;

    flex: 0 0 auto;

    width: 44px;

    height: 44px;

    margin: 0;

    padding: 7px;

    background: transparent;

    border: 0;

    outline: none;

    cursor: pointer;
}

.pharmagate-menu-toggle span {
    display: block;

    width: 26px;

    height: 3px;

    margin: 5px auto;

    background-color: #111111;

    border-radius: 3px;
}


/* =========================================================
   LARGE LAPTOP
   1200px - 1400px
========================================================= */

@media screen and (max-width: 1400px) {

    .pharmagate-header-inner {
        max-width: 100%;

        padding-left: 30px;
        padding-right: 30px;
    }

    .pharmagate-menu {
        gap: 28px;
    }

}


/* =========================================================
   LAPTOP / SMALL DESKTOP
   1100px
========================================================= */

@media screen and (max-width: 1100px) {

    .pharmagate-header-inner {
        min-height: 85px;

        padding-left: 25px;
        padding-right: 25px;

        gap: 20px;
    }

    .pharmagate-logo img,
    .pharmagate-logo .custom-logo {
        max-width: 240px;

        max-height: 62px;
    }

    .pharmagate-menu {
        gap: 20px;
    }

    .pharmagate-menu > li > a {
        min-height: 85px;

        font-size: 16px;
    }

}


/* =========================================================
   TABLET / MOBILE
   900px
========================================================= */

@media screen and (max-width: 900px) {

    .pharmagate-header {
        position: sticky;

        top: 0;

        width: 100%;

        max-width: 100%;

        overflow: visible;
    }


    /* Header */

    .pharmagate-header-inner {
        width: 100%;

        max-width: 100%;

        min-height: 75px;

        padding: 0 20px;

        gap: 15px;
    }


    /* Logo */

    .pharmagate-logo {
        max-width: calc(100% - 60px);
    }

    .pharmagate-logo img,
    .pharmagate-logo .custom-logo {
        width: auto;

        max-width: 220px;

        max-height: 58px;
    }


    /* Hide desktop navigation */

    .pharmagate-navigation {
        position: absolute;

        top: 100%;

        left: 0;

        right: 0;

        width: 100%;

        max-width: 100%;

        margin: 0;

        padding: 0;

        background: #ffffff;

        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);

        display: none;

        z-index: 9999999;

        max-height: calc(100vh - 75px);

        overflow-x: hidden;

        overflow-y: auto;
    }


    /* Open menu */

    .pharmagate-navigation.mobile-open {
        display: block !important;
    }


    /* Hamburger */

    .pharmagate-menu-toggle {
        display: block;

        flex-shrink: 0;
    }


    /* Main mobile menu */

    .pharmagate-menu {
        display: block;

        width: 100%;

        max-width: 100%;

        margin: 0;

        padding: 8px 20px;

        list-style: none;
    }

    .pharmagate-menu > li {
        display: block;

        width: 100%;

        border-bottom: 1px solid #eeeeee;
    }


    /* Mobile links */

    .pharmagate-menu > li > a {
        display: flex;

        align-items: center;

        justify-content: space-between;

        width: 100%;

        min-height: 0;

        padding: 15px 5px;

        font-size: 17px;

        line-height: 1.3;
    }


    /* =====================================================
       MOBILE DROPDOWN
    ===================================================== */

    .pharmagate-about-item > .sub-menu {
        position: static !important;

        display: none;

        width: 100%;

        min-width: 100%;

        margin: 0;

        padding: 0;

        background: #fafafa;

        border: 0;

        border-left: 3px solid #e5252a;

        box-shadow: none;

        opacity: 1;

        visibility: visible;

        transform: none;

        pointer-events: auto;
    }


    /* Mobile click open */

    .pharmagate-about-item.dropdown-open > .sub-menu {
        display: block !important;

        opacity: 1 !important;

        visibility: visible !important;

        transform: none !important;

        pointer-events: auto !important;
    }


    /* Mobile dropdown links */

    .pharmagate-menu .sub-menu li {
        width: 100%;
    }

    .pharmagate-menu .sub-menu li a {
        width: 100%;

        padding: 13px 20px;

        background: #fafafa;

        color: #111111;

        font-size: 16px;
    }

    .pharmagate-menu .sub-menu li a:hover {
        background: #f5f5f5;

        color: #e5252a;
    }

}


/* =========================================================
   TABLET
   768px
========================================================= */

@media screen and (max-width: 768px) {

    .pharmagate-header-inner {
        min-height: 72px;

        padding-left: 18px;
        padding-right: 18px;
    }

    .pharmagate-logo img,
    .pharmagate-logo .custom-logo {
        max-width: 210px;

        max-height: 55px;
    }

    .pharmagate-navigation {
        max-height: calc(100vh - 72px);
    }

}


/* =========================================================
   MOBILE
   600px
========================================================= */

@media screen and (max-width: 600px) {

    .pharmagate-header-inner {
        min-height: 70px;

        padding-left: 15px;
        padding-right: 15px;
    }

    .pharmagate-logo {
        max-width: calc(100% - 55px);
    }

    .pharmagate-logo img,
    .pharmagate-logo .custom-logo {
        max-width: 195px;

        max-height: 52px;
    }

    .pharmagate-menu-toggle {
        width: 42px;

        height: 42px;
    }

    .pharmagate-navigation {
        max-height: calc(100vh - 70px);
    }

    .pharmagate-menu {
        padding-left: 15px;

        padding-right: 15px;
    }

}


/* =========================================================
   SMALL MOBILE
   480px
========================================================= */

@media screen and (max-width: 480px) {

    .pharmagate-header-inner {
        min-height: 68px;

        padding-left: 12px;
        padding-right: 12px;
    }

    .pharmagate-logo img,
    .pharmagate-logo .custom-logo {
        max-width: 180px;

        max-height: 50px;
    }

    .pharmagate-menu-toggle {
        width: 40px;

        height: 40px;

        padding: 6px;
    }

    .pharmagate-menu-toggle span {
        width: 24px;

        height: 3px;
    }

    .pharmagate-menu > li > a {
        font-size: 16px;

        padding-top: 14px;
        padding-bottom: 14px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   375px
========================================================= */

@media screen and (max-width: 375px) {

    .pharmagate-header-inner {
        min-height: 64px;

        padding-left: 10px;
        padding-right: 10px;

        gap: 8px;
    }

    .pharmagate-logo img,
    .pharmagate-logo .custom-logo {
        max-width: 165px;

        max-height: 46px;
    }

    .pharmagate-menu > li > a {
        font-size: 15px;
    }

}


/* =========================================================
   EXTRA SMALL MOBILE
   360px
========================================================= */

@media screen and (max-width: 360px) {

    .pharmagate-header-inner {
        min-height: 62px;

        padding-left: 8px;
        padding-right: 8px;
    }

    .pharmagate-logo img,
    .pharmagate-logo .custom-logo {
        max-width: 155px;

        max-height: 44px;
    }

    .pharmagate-menu {
        padding-left: 10px;

        padding-right: 10px;
    }

    .pharmagate-menu > li > a {
        font-size: 15px;
    }

}


/* =========================================================
   MOBILE SAFETY
   PREVENT HORIZONTAL OVERFLOW FROM HEADER
========================================================= */

@media screen and (max-width: 900px) {

    .pharmagate-header,
    .pharmagate-header-inner,
    .pharmagate-navigation,
    .pharmagate-menu {
        overflow-x: hidden;
    }

}