/*----- HEADER -----*/
.hidden {
    display: none;
}

header .navbar .menu li:hover>ul.dropdown-menu {
    display: block;
}

header {
    background: #0000004D;
    backdrop-filter: blur(54px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 11;
    transition: all .3s ease;
    padding: 0;
}


.header.scrolled {
    backdrop-filter: blur(0px);
    background: #0A0A0A;
}

.auth-header {
    background: #fff;
    box-shadow: 0px 4px 14px 0px #0000001A;

}

.auth-header.scrolled {
    background: #fff;
}

.auth-header .navbar .menu-item a {
    color: rgb(10 10 10 / 60%);
    font-weight: 500;
}

header .navbar .menu .menu-item {
    position: relative;
    margin-left: 30px;
}

header .navbar .menu .right-menu .menu-item {
    position: relative;
    margin-left: 20px;
}

header .navbar {
    padding: 11px 0;
    flex-wrap: nowrap;
}

header .navbar .brand img {
    object-fit: contain;
    max-width: 100%;
}

header .navbar .menu {
    display: flex;
    flex: 1;
    flex-basis: auto;
    justify-content: center;
    align-items: center;
    gap: 56px;
}

header .navbar .menu ul {
    display: flex;
    align-items: center;
    justify-content: center;

}



header .navbar .menu-item a {
    font-weight: 400;
    font-size: 15px;
    text-align: center;
    color: rgba(255, 255, 255, .6);
    margin-right: 0;
    padding: 14px 0px;
    display: flex;
    align-items: center;
    -webkit-transition: ease-in-out 0.5s;
    -moz-transition: ease-in-out 0.5s;
    -o-transition: ease-in-out 0.5s;
    transition: ease-in-out 0.5s;
    position: relative;
    border-bottom: 2px solid transparent;

}

header .navbar .menu-item a.active,
header .navbar .menu-item a:hover {
    border-bottom: 2px solid #95BE00;
    color: #fff;
}

.auth-header .navbar .menu-item a.active,
.auth-header .navbar .menu-item a:hover {
    color: rgb(10 10 10 / 100%);
}

/* ========home index header========== */
.inner-header {
    background: none;
    backdrop-filter: blur(0px);
}

.inner-header .navbar .menu-item a {
    color: #fff;
}

.globe-icon:hover {
    animation: globeRotate 6s linear infinite;
}

.globe-icon,
.noti-icon {
    border: 1px solid #FFFFFF4A;
    border-radius: 50%;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-left: 20px;
    position: relative;


}

.noti-icon {
    animation: ring .6s ease;
}

.auth-header .globe-icon,
.auth-header .noti-icon {
    border: 1px solid #DDDDDD;
}

.header .globe-icon svg path,
.header .noti-icon svg path {
    stroke: #ffffff;
}

.auth-header .globe-icon svg path,
.auth-header .noti-icon svg path {
    stroke: #525252;
}



/* ===========================
   NOTIFICATION DROPDOWN
=========================== */

.noti-dropdown-wrapper {
    position: relative;
}

.noti-dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 380px;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.12);
    padding: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 9999;
    border: 1px solid #EFEFEF;
    overflow: hidden;
    text-align: left;
}

.noti-dropdown-wrapper.show .noti-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* ===========================
   MESSAGE ICON IN HEADER
=========================== */




/* Dropdown Header */
.noti-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px 24px;
    border-bottom: 1px solid #EBEBEB;
}

.noti-dropdown-header .noti-title {
    font-size: 20px;
    font-weight: 700;
    color: #0A0A0A;
    margin: 0;
    line-height: 1.2;
}

.noti-dropdown-header .mark-all-read {
    font-size: 14px;
    font-weight: 500;
    color: #95BE00;
    text-decoration: none;
    transition: color 0.2s ease;
}

.noti-dropdown-header .mark-all-read:hover {
    color: #82a700;
    text-decoration: underline;
}

/* Dropdown Body / Notification List */
.noti-dropdown-body {
    max-height: 380px;
    overflow-y: auto;
    padding: 0 24px;
}

.noti-dropdown-body::-webkit-scrollbar {
    width: 4px;
}

.noti-dropdown-body::-webkit-scrollbar-track {
    background: #F5F5F5;
}

.noti-dropdown-body::-webkit-scrollbar-thumb {
    background: #DDD;
    border-radius: 4px;
}

.noti-dropdown-item {
    padding: 16px 0;
    border-bottom: 1px solid #EBEBEB;
}

.noti-dropdown-item:last-child {
    border-bottom: none;
}

.noti-item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
}

.noti-item-title {
    font-size: 15px;
    font-weight: 700;
    color: #0A0A0A;
    margin: 0;
    line-height: 1.3;
}

.noti-item-time {
    font-size: 13px;
    font-weight: 400;
    color: #A3A3A3;
    white-space: nowrap;
}

.noti-item-desc {
    font-size: 14px;
    font-weight: 400;
    color: #525252;
    margin: 0;
    line-height: 1.45;
}

/* Dropdown Footer */
.noti-dropdown-footer {
    padding: 16px 24px;
    border-top: 1px solid #EBEBEB;
    text-align: center;
    background: #FFFFFF;
}

.noti-dropdown-footer .see-all-noti {
    font-size: 15px;
    font-weight: 600;
    color: #95BE00;
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s ease;
}

.noti-dropdown-footer .see-all-noti:hover {
    color: #82a700;
    text-decoration: underline;
}

@media (max-width: 575px) {
    .noti-dropdown-menu {
        width: 300px;
        right: -60px;
    }

    .noti-dropdown-header {
        padding: 16px 18px 12px 18px;
    }

    .noti-dropdown-body {
        padding: 0 18px;
    }

    .noti-dropdown-footer {
        padding: 14px 18px;
    }


}

/* ===========================
   LANGUAGE DROPDOWN
=========================== */

/* .lang-dropdown-wrapper {
    position: relative;
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    min-width: 168px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.12);
    padding: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 9999;
    border: 1px solid #EFEFEF;
    overflow: hidden;
    text-align: left;
}

.lang-dropdown-wrapper.show .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-item {
    display: block;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 500;
    color: #404040;
    text-decoration: none !important;
    border-bottom: 1px solid #EFEFEF;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.lang-dropdown-item:last-child {
    border-bottom: none;
}

.lang-dropdown-item:hover,
.lang-dropdown-item.active {
    background-color: #F8F9FA;
    color: #95BE00;
} */
/* ===========================
   COMMON LANGUAGE DROPDOWN POPUP
=========================== */

.lang-dropdown-wrapper,
.lng_dropdown {
    position: relative;
}

.lang-dropdown-menu,
.lng_dropdown .dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 160px;
    min-width: 160px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.12);
    padding: 0;
    margin: 0 !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 9999;
    border: 1px solid #EFEFEF;
    overflow: hidden;
    text-align: left;
}

.lang-dropdown-wrapper.show .lang-dropdown-menu,
.lng_dropdown .dropdown-menu.show,
.lng_dropdown.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}



.lang-dropdown-item,
.lng_dropdown .dropdown-item {
    display: block;
    width: 100%;
    padding: 10px 18px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #111111 !important;
    text-decoration: none;
    background: transparent;
    transition: background 0.15s ease;
    border-radius: 0;
    border: 1px solid #EFEFEF;
}

.lang-dropdown-item:hover,
.lang-dropdown-item.active,
.lng_dropdown .dropdown-item:hover,
.lng_dropdown .dropdown-item.active,
.lng_dropdown .dropdown-item:active {
    background: #F7F8F9 !important;
    font-weight: 500;
    color: #000000 !important;
}

.lng_dropdown .dropdown-item .lgn-txt {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}



header .globe-icon svg path {
    stroke: #fff;
}

@media (max-width: 575px) {
    .lang-dropdown-menu {
        min-width: 180px;
        right: -20px;
    }

    .lang-dropdown-item {
        padding: 14px 20px;
        font-size: 18px;
    }
}

.auth-header .menu-item.dropdown>.dropdown-toggle::after {
    border-right: 2px solid #525252;
    border-bottom: 2px solid #525252;
}

@keyframes ring {
    0% {
        transform: rotate(0);
    }

    20% {
        transform: rotate(20deg);
    }

    40% {
        transform: rotate(-20deg);
    }

    60% {
        transform: rotate(15deg);
    }

    80% {
        transform: rotate(-15deg);
    }

    100% {
        transform: rotate(0);
    }
}

@keyframes globeRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.nav-profile {
    display: flex;
    align-items: center;
    grid-gap: 15px;
}

.nav-profile img {
    background: #D9D9D9;
    border: 1px solid #FFFFFF4A;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;

}

/* ===========================
   DROPDOWN
=========================== */

.menu-item.dropdown {
    position: relative;
}

/* Toggle */

.menu-item.dropdown>.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-item.dropdown>.dropdown-toggle:hover {
    border-bottom: 2px solid transparent;
}

.menu-item.dropdown>.dropdown-toggle::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    border-top: 0;
    border-left: 0;
    transform: rotate(45deg);
    margin-top: -4px;
    transition: .3s;
}

.menu-item.dropdown:hover>.dropdown-toggle::after,
.menu-item.dropdown.show>.dropdown-toggle::after {
    transform: rotate(225deg);
    margin-top: 4px;
}

/* Menu */
.menu-item .dropdown-menu {
    position: absolute;
    top: 80px;
    left: 0;
    min-width: 160px;
    padding: 10px;
    margin: 0;
    background: #fff;
    border: none;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s ease;

    display: block;
    z-index: 9999;
}

/* Show */
.menu-item.dropdown:hover>.dropdown-menu,
.menu-item.dropdown .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Items */
.menu-item .dropdown-item {
    color: #000 !important;
    transition: .25s;
    white-space: nowrap;
    padding: 5px 5px !important;
    margin-bottom: 2px;
}

.menu-item .dropdown-item:hover {
    background: #C8FF00;
    border-radius: 4px;
}

.menu-item .dropdown-item:active {
    background: #C8FF00;
}

/* Divider */

.dropdown-divider {
    margin: 8px 0;
}

header .dropdown-menu {
    border: 0;
    overflow: hidden;
}

.coach-btn {
    background: #C8FF00;
    border: 1px solid #C8FF00;
    border-radius: 10px;
    padding: 12px 30px;
    color: #000;
    font-weight: 700;
    font-size: 16px;
    margin-left: 20px;
    transition: all 0.3s ease-in-out;

}

.coach-btn:hover {
    background: transparent;
    color: #C8FF00;
}

@media (max-width:1399px) {
    header .navbar .menu .right-menu .menu-item {
        margin-left: 12px;
    }

    .globe-icon,
    .noti-icon {
        margin-left: 12px;
    }

    header .navbar .menu {
        gap: 16px;
    }
}


/*----- FOOTER -----*/

/* ── Base ── */
.site-footer {
    background: #0A0A0A;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
}

/* ── Top Section ── */
.footer-top {
    padding: 56px 0 0;
}

.footer-top .row {
    border-bottom: 1px solid #525252;
    padding-bottom: 50px;
}

.footer-brand {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-brand img {
    object-fit: contain;
}

.footer-tagline {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
}

.ft-accent {
    color: #C8FF00;
    font-weight: 600;
    text-decoration: none;
}

a.ft-accent:hover {
    text-decoration: underline;
}

/* Social icons */
.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #525252;
    border-radius: 9px;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.footer-socials a:hover {
    border-color: #C8FF00;
    color: #C8FF00;
    background: rgba(200, 255, 0, 0.06);
}

/* Nav columns */
.footer-col-title {
    font-size: 20px;
    font-weight: 700;
    color: #C4CAAC;
    margin-bottom: 18px;
    letter-spacing: 0.01em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 400;
    font-size: 15px;
}

.footer-links a:hover {
    color: #C8FF00;
}

/* App download */
.footer-app-sub {
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    margin-bottom: 18px;

}

.footer-app-wrap {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-badge img {
    /* height: 38px; */
    object-fit: contain;
    border-radius: 6px;
}

.footer-qr img {
    /* width: 80px;
  height: 80px; */
    object-fit: contain;
    border-radius: 10px;
    background: #fff;
}

/* ── Newsletter ── */
.footer-newsletter {
    padding: 30px 0;
}

.newsletter-inner {
    display: flex;
    align-items: flex-start;
    gap: 48px;
}

.newsletter-left {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 0 0 auto;
    max-width: 500px;
}

.nl-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    width: 70px;
    height: 70px;
    background: #95BE00;
    border-radius: 50%;
    flex-shrink: 0;
}

.nl-title {
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    margin-bottom: 4px;
}

.nl-sub {
    font-weight: 400;
    font-size: 12px;
    color: #fff;
    margin-bottom: 0;
}

.nl-sub b {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
    display: block;

}

.newsletter-right {
    flex: 1;
    min-width: 0;
}

.nl-form {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

.nl-form .form-group {
    display: flex;
    align-items: center;
    width: 100%;
    grid-gap: 15px;
}

.nl-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 11.5px 15px;
    font-size: 14px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    width: 100%;
}

.nl-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.nl-form .grenish-btn {
    padding: 9px 17px;
}

.nl-btn:hover {
    opacity: 0.88;
}

.nl-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nl-benefits li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);

}

/* ── Trust Badges ── */
.footer-trust {
    padding: 28px 0;
}

.footer-trust .row {
    border-top: 1px solid #525252;
    border-bottom: 1px solid #525252;
    padding: 30px 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}



.trust-title {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 3px;
}

.trust-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
    line-height: 1.5;
}

/* ── Copyright Bar ── */
.footer-bottom {
    padding: 0 0 15px;
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    font-size: 14px;
    color: #fff;
    margin: 0;
}

/* Language Selector */
.footer-lang {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    user-select: none;
    transition: color 0.2s ease;
}

.footer-lang:hover,
.footer-lang.is-open {
    color: #fff;
}

.footer-lang__label {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.footer-lang__chevron {
    transition: transform 0.25s ease;
    color: rgba(255, 255, 255, 0.55);
}

.footer-lang.is-open .footer-lang__chevron {
    transform: rotate(180deg);
}

/* Dropdown list */
.footer-lang__menu {
    position: absolute;
    bottom: calc(100% + 10px);
    right: 0;
    min-width: 150px;
    list-style: none;
    padding: 6px;
    margin: 0;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 9999;
}

.footer-lang.is-open .footer-lang__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Option items */
.footer-lang__option {
    padding: 8px 12px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.70);
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease;
    white-space: nowrap;
}

.footer-lang__option:hover {
    background: rgba(200, 255, 0, 0.10);
    color: #C8FF00;
}

.footer-lang__option.active {
    color: #C8FF00;
    font-weight: 600;
    background: rgba(200, 255, 0, 0.08);
}



/* ── Body overflow lock while mobile menu is open ── */
body.menu-open {
    overflow: hidden;
}

.m-flex {
    display: flex;
    align-items: center;
    grid-gap: 15px;
}

.m-view {
    display: none;
}

/* ============================================================================================
   PROFILE SIDEBAR
   Triggered when clicking .nav-profile in the header.
   Opens a slide-in panel from the right with an overlay backdrop.
   Body scroll is locked while sidebar is open (body.profile-sidebar-open).
============================================================================================ */

/* ── Overlay backdrop ── */
.profile-sidebar-overlay {
    position: fixed;
    inset: 0;
    /* top/right/bottom/left = 0 */
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.profile-sidebar-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* ── Sidebar panel ── */
.profile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 380px;
    max-width: 100vw;
    background: #ffffff;
    z-index: 1050;
    padding: 24px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 40px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.profile-sidebar.is-open {
    transform: translateX(0);
}

/* ── Body scroll lock ── */
body.profile-sidebar-open {
    overflow: hidden;
}

/* ── Close button ── */
.profile-sidebar__close {
    position: absolute;
    top: 28px;
    right: 20px;
    background: transparent;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.profile-sidebar__close:hover {
    transform: rotate(90deg);
}

/* ── Get Started Card ── */
.profile-sidebar__card {
    background: url(../images/sidebar-bg.png)no-repeat;
    background-position: top center;
    background-size: cover;
    border: 1px solid #525252;
    border-radius: 14px;
    padding: 28px;
    color: #fff;
    flex-shrink: 0;
}

.profile-sidebar__card-label {
    display: flex;
    align-items: center;
    grid-gap: 10px;
}

.profile-sidebar__card-label img {
    min-width: 54px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-sidebar__card-label h6 {
    font-weight: 600;
    font-size: 20px;
    color: #000;
    margin-bottom: 0;
}

.profile-sidebar__card-label a {
    font-weight: 500;
    font-size: 14px;
    color: #8F8F8F;
}

.profile-sidebar__card-title {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 6px;
    color: #fff;

}

.profile-sidebar__card-title span {
    color: #C8FF00;
}

.profile-sidebar__card-desc {
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    margin-bottom: 20px;
}

/* CTA button */
.profile-sidebar__cta {
    display: block;
    width: 100%;
    text-align: center;
    background: #C8FF00;
    border: 1px solid #C8FF00;
    color: #0A0A0A;
    font-size: 14px;
    font-weight: 700;
    border-radius: 12px;
    padding: 13px 20px;
    margin-bottom: 10px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
    text-decoration: none;
}

.profile-sidebar__cta:hover {
    background: transparent;
    color: #C8FF00;
    transform: translateY(-1px);
}

/* Login link */
.profile-sidebar__login {
    display: block;
    width: 100%;
    text-align: center;
    background: #0A0A0A;
    border: 1px solid #C8FF00;
    color: #C8FF00;
    font-size: 14px;
    border-radius: 12px;
    padding: 12px 20px;
    transition: border-color 0.2s ease, color 0.2s ease;
    text-decoration: none;
}

.profile-sidebar__login:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-1px);
}

.profile-items {
    margin-bottom: 20px;
}

.profile-sidebar__nav .profile-items:last-child {
    margin-bottom: 0;
}

/* ── Navigation links list ── */
.profile-sidebar__nav h5 {
    font-weight: 500;
    font-size: 14px;
    color: #95BE00;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.profile-sidebar__nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.profile-sidebar__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    font-weight: 400;
    font-size: 15px;
    color: #525252;
    border-bottom: 1px solid #D8D8D880;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

ul li:last-child .profile-sidebar__link {
    border-bottom: 0;
    padding-bottom: 0;
}

.profile-sidebar__link:hover {
    background: rgba(200, 255, 0, 0.10);
    color: #0A0A0A;
    padding-left: 20px;
}

.profile-sidebar__link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s ease;
}


.profile-sidebar__link:hover .profile-sidebar__link-icon svg path,
.profile-sidebar__link:hover .profile-sidebar__link-icon svg circle,
.profile-sidebar__link:hover .profile-sidebar__link-icon svg rect,
.profile-sidebar__link:hover .profile-sidebar__link-icon svg polyline,
.profile-sidebar__link:hover .profile-sidebar__link-icon svg line {
    stroke: #95BE00;
}

.become-coach {
    background: linear-gradient(0deg, #000000, #000000), linear-gradient(90deg, rgba(192, 245, 0, 0.1) 0%, rgba(32, 31, 31, 0.1) 100%);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;

}

.become-coach:hover {
    padding-left: 20px;
}

.become-lft {
    display: flex;
    align-items: center;
    grid-gap: 15px;
}

.become-lft span {
    background: #C8FF0017;
    border-radius: 8px;
    min-width: 46px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coach-txt h3 {
    font-weight: 600;
    font-size: 15px;
    vertical-align: middle;
    color: #C0F500;
    margin-bottom: 3px;
}

.coach-txt p {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 12px;
    color: #fff;
    vertical-align: middle;
}

.progress-wrapper {
    margin-top: 10px;
}

.progress-wrapper .progress-bar {
    width: 100%;
    height: 6px;
    background: #D9D9D929;
    border-radius: 50px;
    overflow: hidden;

}

.progress-wrapper .progress-fill {
    width: 20%;
    height: 100%;
    background: #C8FF00;
    border-radius: 50px;
    transition: width .4s ease;
}

.progress-wrapper .progress-text {
    margin-top: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #C8FF00;
}

/* Grow visibility */
.mgrow-box {
    background: #101010;
    border: 1px solid #FFFFFF0D;
    border-radius: 12px;
    padding: 15px;
}

.grow-item {
    background: #FFFFFF1F;
    display: flex;
    align-items: center;
    grid-gap: 10px;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 18px;
}

.grow-item span {
    min-width: 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FFFFFF33;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grow-txt h3 {
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0px;
    color: #fff;
    margin-bottom: 3px;
}

.grow-txt p {
    font-weight: 400;
    font-size: 12px;
    color: #FFFFFF;
    margin-bottom: 5px;
    opacity: 0.7;
}

.mgrow-box .become-coach {
    background: transparent;
    padding: 0;
}

/* ============================================================================================
   END PROFILE SIDEBAR
============================================================================================ */
/* ── Responsive ── */



@media only screen and (max-width: 1200px) {

    header .navbar .menu .menu-item:first-child:after,
    header .navbar .menu .menu-item:nth-child(3):after,
    header .navbar .menu .menu-item:nth-child(4):after {
        display: none;
    }

    header .navbar {
        padding: 5px 0;
        margin: 0 auto;
    }

    /* #nav is now inside .m-flex so sibling selector is broken — body.menu-open (set by JS) acts as fallback */
    header .navbar #nav:checked~.wrapper,
    body.menu-open header .navbar .wrapper {
        width: 100%;
        background: #00000080;
        opacity: 1;
        display: flex;
        align-items: flex-end;
        flex-direction: column;
        z-index: 99;
        height: 100dvh;
        transition: all 0.3s ease;
    }

    header .navbar .wrapper {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 0;
        height: unset;
        z-index: -1;
        opacity: 0;
        background: #d1dee7;
        transition: all 0.3s ease;
    }

    header .navbar .wrapper .menu {
        display: none;
    }

    header .navbar .wrapper .menu li {
        width: 100%;
        text-align: left;
        padding: 12px 25px;
        margin-bottom: 0px;
    }

    header .navbar .wrapper .menu-item:nth-child(1) a {
        transition-delay: 0.2s;
    }

    header .navbar .wrapper .menu-item:nth-child(2) a {
        transition-delay: 0.3s;
    }

    header .navbar .wrapper .menu-item:nth-child(3) a {
        transition-delay: 0.4s;
    }

    header .navbar .wrapper .menu-item:nth-child(4) a {
        transition-delay: 0.5s;
    }

    header .navbar .wrapper .menu-item:not(:first-child) {
        margin-left: 0;
    }

    header .navbar .wrapper .menu-item a {
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease-in-out;
        display: flex;
        align-items: center;
        padding: 0;
        font-size: 16px;
    }

    header .navbar .nav-toggle {
        display: block;
        cursor: pointer;
        z-index: 999;
        margin-bottom: 0;
        position: relative;
    }

    header .navbar .nav-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        margin-left: 10px;
    }

    .auth-header .navbar .nav-toggle span {
        background: #0A0A0A;
    }

    header .navbar .nav-toggle span:nth-child(2) {
        margin: 5px 0;
        opacity: 1;
        width: 18px;
        margin-left: auto;
    }

    header .navbar .menu-item {
        margin-left: 0;
    }

    /* header .navbar .menu-item a.active,
    header .navbar .menu-item a:hover {
        border: 0;
    } */

    header .navbar .wrapper .menu-item a span {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        color: #424242;
    }


    header .navbar #nav:checked~.wrapper .menu,
    body.menu-open header .navbar .wrapper .menu {
        display: block;
        flex-direction: column;
    }

    header .navbar #nav:checked~.wrapper .menu-item a,
    body.menu-open header .navbar .wrapper .menu-item a {
        opacity: 1;
        transform: translateX(0);
    }

    header .navbar .menu-item::before {
        background: #fd9803;
        left: 0;
    }

    header .navbar .menu-item::before {
        top: 34% !important;
    }

    header .navbar #nav:checked~.wrapper .menu,
    body.menu-open header .navbar .wrapper .menu {
        background: #0A0A0A;
        box-shadow: 0px -3px 14px 0px #00000040;
        width: 80%;
        margin-right: auto;
        height: 100%;
        position: relative;
    }

    .globe-icon,
    .noti-icon,
    header .navbar .menu .menu-item {
        margin-left: 0;
    }

    .auth-header .navbar #nav:checked~.wrapper .menu,
    body.menu-open .auth-header .navbar .wrapper .menu {
        background: #fff;
    }

    header .navbar .menu ul {
        display: block;
        width: fit-content;
    }

    /* Drop down */
    .menu-item.dropdown>.dropdown-toggle::after {
        margin-left: auto;
    }

    .menu-item .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        width: 100%;
        min-width: 100%;
        box-shadow: none;
        border-radius: 10px;
        background: #f7f7f7;
        margin-top: 10px;
        padding: 8px;
    }

    .menu-item.dropdown.show>.dropdown-menu {
        display: block;
    }

    .menu-item .dropdown-menu li {
        padding: 5px !important;
    }

    .menu-item .dropdown-menu .dropdown-item {
        padding: 0 !important;
    }

    .menu-item .dropdown-menu .dropdown-item:hover {
        padding-left: 18px;
    }

    .coach-btn {
        margin: 0;
    }

    /* ── Hamburger → Cross transition ── */
    header .navbar .nav-toggle span {
        transition: transform 0.35s ease, opacity 0.25s ease, width 0.25s ease, margin 0.25s ease;
        transform-origin: center center;
    }

    /* When menu is open: top bar rotates to \ */
    body.menu-open header .navbar .nav-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
        width: 22px !important;
        margin-left: 14px;
    }

    /* When menu is open: middle bar fades out */
    body.menu-open header .navbar .nav-toggle span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    /* When menu is open: bottom bar rotates to / */
    body.menu-open header .navbar .nav-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
        width: 22px !important;
        margin-left: 14px;
    }

    /* Inside mobile sidebar drawer: hide language, notification, and profile avatar, but keep Become a coach button */
    header .navbar .wrapper .right-menu {
        display: block !important;
        margin-top: 15px;
        padding-left: 0;
    }

    header .navbar .wrapper .right-menu>.lang-dropdown-wrapper,
    header .navbar .wrapper .right-menu>.noti-dropdown-wrapper,
    header .navbar .wrapper .right-menu>li:has(.nav-profile),
    header .navbar .wrapper .right-menu>.menu-item:has(.nav-profile),
    header .navbar .wrapper .right-menu>li>.nav-profile,
    header .navbar .wrapper .right-menu .nav-profile {
        display: none !important;
    }

    .m-flex {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-left: auto;
    }

    .m-view {
        display: flex !important;
        align-items: center;
    }

    .m-flex .globe-icon,
    .m-flex .noti-icon {
        margin-left: 0;
    }

    .m-flex .noti-dropdown-menu,
    .m-flex .lang-dropdown-menu {
        position: absolute;
        top: calc(100% + 10px);
        right: 15px;
        left: auto;
        z-index: 1050;
    }

    .noti-dropdown-body {
        max-height: 293px;
    }

    .nav-profile {
        grid-gap: 5px;
    }



}

@media (max-width: 991px) {
    .newsletter-inner {
        flex-direction: column;
        gap: 24px;
    }

    .newsletter-left {
        max-width: 100%;
    }

    .m-flex {
        gap: 12px;
    }


}


@media (max-width: 767px) {
    .footer-top {
        padding: 40px 0 28px;
    }

    .footer-app-wrap {
        flex-wrap: wrap;
    }

    .nl-benefits {
        gap: 8px 16px;
    }

    .footer-bottom .container {
        flex-direction: column-reverse;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .trust-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .globe-icon,
    .noti-icon {
        width: 32px;
        height: 32px;
    }

    a.nav-profile.m-view svg {
        width: 32px;
        height: 32px;
    }

    a.nav-profile.m-view .down-arrow svg {
        width: 14px;
        height: 8px;
    }

    header .navbar .nav-toggle span {
        margin-left: 4px;
    }

    .m-flex {
        gap: 6px;
    }

}

/* ── Responsive: full-width on small screens ── */
@media (max-width: 400px) {
    .profile-sidebar {
        width: 100vw;
        padding: 24px 16px 32px;
    }
}

@media (max-width: 320px) {
    .noti-dropdown-menu {
        width: 290px;
    }
}

.header.auth-header .down-arrow svg path {
    fill: #000000;
    /* stroke: #0000; */
}