/* =========================================================
   HEADER
========================================================= */
.header {
    position: relative;
    z-index: 999;
}

/* =========================================================
   TOP HEADER
========================================================= */
.header__nav {
    position: absolute;
    inset: 0 0 auto;
    width: 100%;
    z-index: 99;

    padding: 12px 0;

    background: var(--header-nav-bg);
    /* backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); */

    transition: transform .4s ease, opacity .4s ease;
}

body.scrolled .header__nav {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* =========================================================
   TOP CONTACT
========================================================= */
.header__top-left {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;

    padding-bottom: 5px;
    margin-bottom: 5px;

    border-bottom: 1px solid rgba(255, 255, 255, 0);
}

.header__top-left a {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    color: var(--topbar-txt-color);

    font-size: 12px;
    font-weight: 500;

    transition: var(--transition);
}

.header__top-left a:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.header__top-left strong {
    font-weight: 700;
}

.divider {
    color: rgba(255, 255, 255, .5);
    font-size: 11px;
}

/* =========================================================
   NAV WRAP
========================================================= */
.nav__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* =========================================================
   LOGO
========================================================= */
.nav__brand {
    flex-shrink: 0;
}

.nav__brand a {
    display: flex;
    align-items: center;
}

.nav__brand img {
    height: 60px;
    width: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: brightness(0) invert(1);
}

.nav__brand:hover img {
    transform: scale(1.03);
}

/* =========================================================
   NAVIGATION
========================================================= */
.nav__list {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 12px;

    list-style: none;
    padding: 0;
    margin: 0;

    flex: 1;
}

.nav__item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav__item+.nav__item {
    padding-left: 14px;
}

.nav__item+.nav__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;

    transform: translateY(-50%);

    width: 1px;
    height: 28px;

    background: rgba(255, 255, 255, .12);
}

/* =========================================================
   NAV LINK
========================================================= */
.nav__item>a {
    display: flex;
    align-items: center;
    gap: 10px;


    border-radius: var(--radius-md);

    color: var(--white);

    transition: var(--transition);
}

.nav__btn {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 8px 14px;

    border-radius: var(--radius-md);

    color: var(--white);

    transition: var(--transition);
}


/* =========================================================
   ICON
========================================================= */
.nav__icon {
    width: 38px;
    height: 38px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    background: rgba(255, 255, 255, .12);

    border: 1px solid rgba(255, 255, 255, .08);

    transition: var(--transition);
}

.nav__icon i {
    color: var(--white);
    font-size: 14px;
    transition: var(--transition);
}

.nav__item:hover .nav__icon {
    background: var(--white);
}

.nav__item:hover .nav__icon i {
    color: var(--primary);
}

/* =========================================================
   NAV CONTENT
========================================================= */
.nav__content {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nav__heading {
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
}

.nav__desc {
    font-size: 11px;
    color: rgba(255, 255, 255, .7);
}

/* =========================================================
   HIGHLIGHT ITEMS
========================================================= */
/* .nav__item--highlight a {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
}

.nav__item--highlight:hover a {
    background: rgba(255,255,255,.12);
} */

.nav__item--highlight img {
    height: 32px;
    object-fit: contain;
}

/* =========================================================
   LOGIN BUTTON
========================================================= */
.nav__cta .nav__btn {
    background: var(--user-gradient);

    box-shadow: 0 8px 20px rgba(0, 0, 0, .18);

    font-size: 13px;
    font-weight: 600;
    line-height: 1;
}

.nav__cta .nav__icon {
    background: var(--white);
}

.nav__cta .nav__icon i {
    color: var(--primary);
}



/* =========================================================
   DROPDOWN
========================================================= */
.userDropdown {
    position: absolute;
    top: 100%;
    right: 0;

    width: 320px;

    background: var(--bg-white);

    border-radius: var(--radius-sm);

    box-shadow: var(--shadow-medium);

    overflow: hidden;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(0px);

    transition: var(--transition);
}

.nav-dropdown:hover .userDropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0);
}

/* =========================================================
   USER GREETING
========================================================= */
.userGreeting {
    margin: 0;

    padding: 18px 20px;

    background: #f8fbff;

    border-bottom: 1px solid var(--border-light);

    font-size: 13px;
    color: var(--text-dark);
}

.userGreeting strong {
    display: block;
    margin-top: 5px;

    color: var(--primary);
}

/* =========================================================
   USER DROPDOWN ITEM
========================================================= */
.userDropdown a {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    padding: 16px 20px;

    color: var(--text-dark);

    transition: var(--transition);
}

.userDropdown a:not(:last-child) {
    border-bottom: 1px solid var(--border-light);
}

.userDropdown a:hover {
    background: #f7fbff;
}

.userDropdown .icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    border-radius: 50%;

    display: grid;
    place-items: center;

    background: rgba(6, 106, 130, .08);
}

.userDropdown .icon i {
    color: var(--primary);
}

.userDropdowncontent h4 {
    margin: 0 0 4px;

    font-size: 15px;
    font-weight: 700;
}

.userDropdowncontent p {
    margin: 0;

    font-size: 12px;
    line-height: 1.5;

    color: var(--text-light);
}

/* =========================================================
   STICKY HEADER
========================================================= */
.sticky-header {
    position: fixed;
    inset: 0 0 auto;

    width: 100%;
    background: rgba(255, 255, 255, 1);

    backdrop-filter: blur(16px);

    box-shadow: var(--shadow-light);

    z-index: 1000;
    opacity: 0;
    visibility: hidden;

    transform: translateY(-100%);

    transition: all .35s ease;
}

body.scrolled .sticky-header {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

/* =========================================================
   STICKY CONTAINER
========================================================= */
.sticky-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

/* =========================================================
   STICKY LOGO
========================================================= */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;

    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-link img {
    height: 60px;
    width: 100%;
}

/* =========================================================
   MAIN NAV
========================================================= */
.main-nav {
    flex: 1;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 6px;
    width: 100% !important;
}

.nav-list li {
    position: relative;
    flex-shrink: 0 !important;
}

/* =========================================================
   STICKY NAV LINK
========================================================= */
.nav_link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
padding:20px 0;
    max-width: 54px;
    border-radius: var(--radius-md);
    color: var(--header-txt-color);
    transition: var(--transition);
}

.nav_link i {
    width: 20px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.nav_link i.fa-gem{
	color: var(--primary-light);
}

.nav_link span {
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    line-height: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    width: 60px;
}

/* =========================================================
   MEGA MENU
========================================================= */
.more-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;

    min-width: 220px;

    background: var(--bg-white);

    border-radius: var(--radius-sm);

    box-shadow: var(--shadow-medium);

    overflow: hidden;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(14px);

    transition: var(--transition);
}

.more-dropdown:hover .more-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0);
}

/* Full Mega Menu */
.position-static .more-dropdown-menu {
    width: 100%;
    border-radius: 0 0 20px 20px;
}

/* =========================================================
   MEGA MENU CONTENT
========================================================= */
.col-megamenu {
    padding: 24px;
}

.col-megamenu.Holidays-theme {
    background: #f8fbff;
}

.col-megamenu .title {
    font-size: 14px;
    font-weight: 700;

    margin-bottom: 14px;
    padding-bottom: 10px;

    border-bottom: 2px solid var(--border-medium);

    color: var(--text-dark);
}

.col-megamenu ul {
    padding: 0;
    margin: 0;

    list-style: none;
}

.col-megamenu a {
    display: block;

    padding: 7px 0;

    color: var(--text-light);

    font-size: 13px;
    font-weight: 500;

    transition: var(--transition);
}

.col-megamenu a:hover {
    color: var(--primary);
    padding-left: 6px;
}

/* =========================================================
   DROPDOWN ITEM
========================================================= */
.dropdown-item {
    display: flex !important;
    align-items: center;
    gap: 10px;

    padding: 12px 16px;

    font-size: 13px;
    font-weight: 500;

    color: var(--text-dark);

    transition: var(--transition);
}

.dropdown-item:hover {
    background: #f7fbff;
    color: var(--primary);
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    font-size: 18px;
}

/* =========================================================
   USER ACCOUNT
========================================================= */
.user-account {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-tnpl img {
    height: 38px;
    width: auto;

    transition: var(--transition);
}

/* =========================================================
   USER LOGIN BUTTON
========================================================= */
.user-login-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border: none;
    border-radius: var(--radius-md);
    background: var(--user-gradient);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    line-height: 1;
}

.user-login-btn:hover {}

.user-icon {
    width: 38px;
    height: 38px;

    border-radius: 50%;

    background: var(--white);

    display: grid;
    place-items: center;
}

.user-icon i {
    color: var(--primary);
}

.dropdown-arrow {
    font-size: 11px;
}

/* =========================================================
   STICKY USER DROPDOWN
========================================================= */
.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;

    width: 340px;

    background: var(--bg-white);

    border-radius: var(--radius-sm);

    box-shadow: var(--shadow-medium);

    overflow: hidden;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(0px);

    transition: var(--transition);
}

.user-login-btn.dropdown:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0);
}

.user-greeting {
    margin: 0;

    padding: 18px 20px;

    background: #f8fbff;

    border-bottom: 1px solid var(--border-light);

    font-size: 13px;

    color: var(--text-dark);
}

.user-greeting strong {
    display: block;
    margin-top: 5px;

    color: var(--primary);
}

.user-dropdown a {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    padding: 16px 20px;

    color: var(--text-dark);

    transition: var(--transition);
}

.user-dropdown a:not(:last-child) {
    border-bottom: 1px solid var(--border-light);
}

.user-dropdown a:hover {
    background: #f7fbff;
}

.user-dropdown .icon {
    width: 44px;
    height: 44px;

    flex-shrink: 0;

    border-radius: 50%;

    display: grid;
    place-items: center;

    background: rgba(6, 106, 130, .08);
}

.user-dropdown .icon i {
    color: var(--primary);
}

.userDropdowncontent h4 {
    margin: 0 0 5px;

    font-size: 15px;
    font-weight: 700;
}

.userDropdowncontent p {
    margin: 0;

    font-size: 12px;
    line-height: 1.5;

    color: var(--text-light);
}

/* =========================================================
   MOBILE TOGGLE
========================================================= */
.offcanvas-toggle {
    width: 42px;
    height: 42px;

    border: none;
    border-radius: 12px;

    background: rgba(6, 106, 130, .08);

    color: var(--primary);

    display: grid;
    place-items: center;

    font-size: 18px;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1200px) {

    .nav__content {
        display: none;
    }

    .nav__item>a,
    .nav__btn {
        padding: 8px;
    }
}

@media (max-width: 992px) {

    .header__top-left {
        display: none;
    }

    .nav__item {
        display: none;
    }

    .nav__item.nav__cta {
        display: flex;
    }

    .sticky-header .main-nav,
    .sticky-header .user-account {
        display: none;
    }

    .logo-link img,
    .nav__brand img {
        height: 40px;
    }
}

@media (max-width: 768px) {

    .header__nav {
        padding: 10px 0;
    }

    .userDropdown,
    .user-dropdown {
        width: 280px;
    }
}

@media (max-width: 480px) {
.nav__item+.nav__item::before{
    display: none;
}

    .logo-link img,
    .nav__brand img {
        height: 34px;
    }

    .userDropdown,
    .user-dropdown {
        width: 250px;
    }
}

.paymilestxt {
    font-size: 10px;
    font-weight: normal;
}











/* ============================
   MOBILE OFFCANVAS MENU
============================ */

.header .mobile-menu {
    background: #0a223d;
    color: #fff;
}

.header .mobile-menu.offcanvas-start {
    width: 320px;
}

/* Header */
.header .mobile-menu .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header .mobile-menu .offcanvas-title {
    font-size: 18px;
    font-weight: 600;
}

.header .mobile-menu .btn-close {
    filter: invert(1);
}

/* ============================
   NAVIGATION
============================ */

.header .mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header .mobile-nav li {
    margin-bottom: 6px;
}

.header .mobile-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 8px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.25s ease;
}

.header .mobile-nav a span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header .mobile-nav a i {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hover */
.header .mobile-nav a:hover,
.header .mobile-nav a.active {
    background: var(--user-gradient);
    transform: translateX(4px);
    padding-left: 14px;
}

/* ============================
   SUBMENU
============================ */

.header .has-submenu>a {
    cursor: pointer;
}

/* Arrow rotate */
.header .has-submenu>a[aria-expanded="true"] i.fa-chevron-down {
    transform: rotate(180deg);
}

.header .submenu-toggle i.fa-chevron-down {
    transition: transform 0.3s ease;
}

.header .submenu {
    padding: 8px 10px 10px;
    margin-top: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.header .submenu-section {
    margin-bottom: 12px;
}

.header .submenu-section h6 {
    font-size: 11px;
    font-weight: 600;
    color: #53b2fe;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.header .submenu-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header .submenu-section li a {
    display: block;
    padding: 6px 8px;
    font-size: 13px;
    color: #ddd;
    border-radius: 6px;
}

.header .submenu-section li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* More submenu */
.header .submenu-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    font-size: 13px;
    border-radius: 6px;
    color: #ddd;
    text-decoration: none;
}

.header .submenu-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* ============================
   USER ACCOUNT
============================ */

.header .mobile-user-account {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.header .mobile-user-account .nav-tnpl {
    margin-bottom: 15px;
}

.header .mobile-user-account .nav-tnpl img {
    width: 100%;
    max-width: 80px;
}


.header .mobile-user-account .user-login-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: var(--user-gradient);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.header .mobile-user-account .user-login-btn:hover {

    opacity: 0.9;
}

.header .mobile-user-account .user-icon {
    width: 32px;
    height: 32px;
    background: #fff;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Profile */
.header .mobile-user-account .user-profile-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 10px;
}

.header .mobile-user-account .user-info {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.header .mobile-user-account .user-info .user-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
}

.header .mobile-user-account .user-info small {
    display: block;
    font-size: 11px;
    opacity: 0.7;
}

.header .mobile-user-account .user-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.header .mobile-user-account .user-actions a {
    padding: 10px;
    border-radius: 6px;
    font-size: 13px;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
}

.header .mobile-user-account .user-actions a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(3px);
}

/* Scrollbar */
.header .mobile-menu .mobile-user-account .offcanvas-body::-webkit-scrollbar {
    width: 6px;
}

.header .mobile-menu .mobile-user-account .offcanvas-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}
