/* cart style */
.cart-count {
    position: absolute;
    top: -10px;
    right: 0px;
    color: rgb(239, 0, 0);
    background-color: transparent;
    font-size: 18px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lnr-icon-shopping-cart,
.lnr-icon-user {
    color: var(--theme-color1);
}

/* Language Switcher */
.language-switcher {
    position: relative;
    display: inline-block;
}

.lang-btn {
    background: #fff;
    border: 1px solid #ddd;
    padding: 5px 5px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: border 0.2s;
}

.lang-btn:hover {
    border: 1px solid #333;
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-width: 120px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 100;
    padding: 0;
    margin: 0;
    list-style: none;
}

.language-switcher:hover .lang-dropdown,
.language-switcher:focus-within .lang-dropdown {
    display: block;
}

.lang-dropdown li a {
    display: block;
    padding: 8px 16px;
    color: #222;
    text-decoration: none;
    transition: background 0.2s;
}

.lang-dropdown li a:hover {
    background: #f5f5f5;
}

/* profile dropdown style */
.profile-img-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.profile-dropdown-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    min-width: 150px;
    z-index: 1000;
    text-align: center;
}
.profile-dropdown-links li {
    list-style: none;
    padding: 5px 15px;
}

.profile-img {
    cursor: pointer;
}

.profile-img-wrapper:hover .profile-dropdown-links,
.profile-img-wrapper:focus-within .profile-dropdown-links {
    display: block;
}

.profile-dropdown-links li a {
    color: #333;
    text-decoration: none;
}

.profile-dropdown-links li:hover {
    .profile-dropdown-links li a {
        color: #007bff;
    }

    background: #f5f5f5;
}

.profile-dropdown:focus .profile-dropdown-links,
.profile-dropdown:hover .profile-dropdown-links {
    display: block !important;
}

.profile-dropdown-links li a:hover {
    color: #007bff;
}

/* mobile menu style */
.btn-style-one:hover {
    background-color: #132032 !important;
    color: #fdfdfd !important;
}

.navigation li.active {
    background-color: #0e2024 !important;
    color: white !important;
}

.main-header .header-lower .outer-box .ui-btn-outer {
    padding-left: 0px !important;
    margin-left: 0px !important;
}
@media (max-width: 466px) {
    .main-header .ui-btn {
        margin-right: 0px !important;
    }
}

@media (min-width: 486px) {
    .main-header .ui-btn {
        margin-left: 20px !important;
    }
}

/* project & packages owl style */
.project-section .owl-nav,
.packages-carousel .owl-nav,
.news-carousel .owl-nav {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
    margin-top: 20px !important;
    margin-bottom: 10px !important;
    margin-left: 0px !important;
}

.project-section .owl-nav .owl-prev,
.project-section .owl-nav .owl-next,
.packages-carousel .owl-nav .owl-prev,
.packages-carousel .owl-nav .owl-next,
.news-carousel .owl-nav .owl-next,
.news-carousel .owl-nav .owl-prev {
    width: 40px !important;
    height: 40px !important;
    background-color: var(--theme-color1) !important;
    border: 1px solid var(--theme-color) !important;
    color: #fff !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    opacity: 0.8 !important;
    &:hover {
        background-color: var(--theme-color) !important;
        border: 1px solid var(--theme-color1) !important;
        color: var(--theme-color1) !important;
        opacity: 1 !important;
    }
}


:root {
    --sidebar-width: 250px;
    --header-height: 60px;
}

.dashboard-container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: var(--sidebar-width);
    background: #2c3e50;
    color: white;
    position: fixed;
    height: 100vh;
    transition: all 0.3s ease;
    z-index: 1000;
}

.sidebar-header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-menu {
    padding: 20px 0;
}

.sidebar-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    padding: 10px 20px;
}

.sidebar-menu a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-menu a:hover {
    color: #3498db;
}

.sidebar-menu a.active {
    color: #3498db;

}

.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    padding: 20px;
    transition: all 0.3s ease;
}

.header {
    height: var(--header-height);
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: none;
    align-items: center;
    padding: 0 20px;
    position: fixed;
    top: 0;
    right: 0;
    left: var(--sidebar-width);
    z-index: 999;
}

.toggle-btn {
    display: none;
    background: none;
    border: none;
    color: #2c3e50;
    font-size: 24px;
    cursor: pointer;
}
 /* Custom Scrollbar Styling */
 .sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* For Firefox */
.sidebar {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) rgba(255, 255, 255, 0.1);
}



@media (max-width: 991px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
    }

    .header {
        display: flex;
        left: 0;
    }

    .toggle-btn {
        display: block;
    }
    .content-container {
        margin-top: var(--header-height);
        padding: 20px;
    }
}

.terms-link:hover {
    color: #3498db !important;
}
.privacy-link:hover {
    color: #3498db !important;
}