:root {
    --pk_up_font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --pk_up_font-size-base: 15px;

    --pk_up_protikriya-blue: #1e3a5f;
    --pk_up_protikriya-blue-light: #e8eef5;
    --pk_up_protikriya-blue-dark: #12233b;

    --pk_up_protikriya-orange: #ff4500;
    --pk_up_protikriya-orange-light: #fff0eb;
    --pk_up_protikriya-orange-dark: #cc3700;

    --pk_up_success: #10b981;
    --pk_up_warning: #f59e0b;
    --pk_up_danger: #ef4444;
    --pk_up_gray-50: #f9fafb;
    --pk_up_gray-100: #f3f4f6;
    --pk_up_gray-200: #e5e7eb;
    --pk_up_gray-300: #d1d5db;
    --pk_up_gray-400: #9ca3af;
    --pk_up_gray-500: #6b7280;
    --pk_up_gray-600: #4b5563;
    --pk_up_gray-700: #374151;
    --pk_up_gray-800: #1f2937;
    --pk_up_gray-900: #111827;
    --pk_up_white: #ffffff;

    --pk_up_primary: var(--pk_up_protikriya-blue);
    --pk_up_primary-light: var(--pk_up_protikriya-blue-light);
    --pk_up_primary-dark: var(--pk_up_protikriya-blue-dark);
    --pk_up_secondary: var(--pk_up_protikriya-orange);

    --pk_up_shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --pk_up_shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --pk_up_shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --pk_up_shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --pk_up_radius: 8px;
    --pk_up_radius-md: 12px;
    --pk_up_radius-lg: 16px;
}

body {
    font-family: var(--pk_up_font-family);
}

.top-header {
    display: flex;
    position: relative;
    height: 60px;
    background: linear-gradient(90deg, var(--pk_up_secondary) 0%, var(--pk_up_protikriya-orange-dark) 100%);
    color: var(--pk_up_white);
    overflow: hidden;
}

.media_p {
    width: 30%;
    height: 100%;
    clip-path: polygon(0 0, 79% 0, 100% 100%, 0 100%);
    background: var(--pk_up_secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding-left: 30px;
    z-index: 2;
}

.contact {
    width: 77.0%;
    height: 100%;
    background-color: var(--pk_up_primary);
    clip-path: polygon(0 0, 100% 1%, 100% 100%, 5% 100%);
    position: absolute;
    top: 0%;
    left: 23%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.sosal_media_link {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

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

.img img {
    height: 40px;
}

.fast_whatssapp {
    border-right: 1px solid var(--pk_up_primary-light);
    padding-right: 10px;
    font-size: var(--pk_up_font-size-base);
}

.fast_masssage {
    margin-left: 10px;
    font-size: var(--pk_up_font-size-base);
}

.sosal_media {
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.sosal_media a {
    font-size: 20px;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: var(--pk_up_gray-50);
}

.sosal_media a:hover {
    transform: translateY(-3px);
    color: #ffd700;
}

.navbar-container {
    z-index: 1000;
    background: var(--pk_up_white);
    box-shadow: var(--pk_up_shadow-md);
    border-bottom: 1px solid var(--pk_up_gray-200);
    height: 60px;
    width: 100%;
    position: sticky;
    top: 0;
}

.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 100%;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    width: 165px;
}

.logo img {
    width: 100%;
    height: 100%;
}

.secondary-nav {
    display: flex;
    font-size: 0.75rem;
    font-weight: 500;
    /* background: var(--pk_up_gray-50); */
    border-radius: var(--pk_up_radius);
}

.secondary-nav a {
    color: var(--pk_up_gray-800);
    text-decoration: none;
    padding: 0.4rem 1rem;
    border-left: 1px solid var(--pk_up_gray-300);
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.secondary-nav a:first-child {
    border-left: none;
}

.secondary-nav a:hover {
    color: var(--pk_up_secondary);
    transform: translateY(-2px);
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.notification-wrapper {
    position: relative;
}

.notification-btn {

    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    font-size: 22px;

}

#notification-count {

    position: absolute;
    top: -6px;
    right: -6px;

    width: 18px;
    height: 18px;

    border-radius: 50%;

    background: #ff3b30;

    color: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 11px;

    font-weight: bold;

}
.notification-dropdown {

    position: absolute;
    top: 48px;
    right: 0;
    width: 360px;

    background: #fff;

    border-radius: 12px;

    box-shadow: 0 15px 40px rgba(0,0,0,.15);

    display: none;

    overflow: hidden;

    z-index: 9999;

}
.notification-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 15px;

    border-bottom: 1px solid #eee;

}

#markAllReadBtn {

    border: none;

    background: none;

    color: #087d5c;

    font-size: 13px;

    cursor: pointer;

    font-weight: 600;

}

#markAllReadBtn:hover {

    text-decoration: underline;

}

.notification-header h3 {

    margin: 0;

    font-size: 18px;

}

.notification-body {

    max-height: 420px;

    overflow-y: auto;

}
.notification-body::-webkit-scrollbar{

    width:6px;

}

.notification-body::-webkit-scrollbar-thumb{

    background:#ccc;

    border-radius:20px;

}

.notification-body::-webkit-scrollbar-thumb:hover{

    background:#999;

}
.notification-footer {

    padding: 15px;

    text-align: center;

    border-top: 1px solid #eee;

}

.notification-footer a {

    text-decoration: none;

    font-weight: 600;

}

.notification-card {
    display: flex;
    gap: 12px;
    padding: 14px;
    border-bottom: 1px solid #ececec;
    cursor: pointer;
    transition: .25s;
    text-decoration: none;
    color: #222;
}

.notification-card:hover {
    background: #f8f9fb;
}

.notification-card.unread {
    background: #eef5ff;
}

.notification-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #087d5c;
    color: #fff;
    font-size: 18px;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
}

.notification-message {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.notification-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.notification-time {
    font-size: 12px;
    color: #888;
}

.notification-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0d6efd;
}

/* Loading Spinner */
.notification-loading {

    padding: 30px;

    text-align: center;

    color: #666;

}

.notification-loading i {

    font-size: 24px;

    animation: spin .8s linear infinite;

}

@keyframes spin {

    from {

        transform: rotate(0deg);

    }

    to {

        transform: rotate(360deg);

    }

}

/* Empty State */
.notification-empty {

    padding: 35px;

    text-align: center;

    color: #888;

}

.notification-empty i {

    font-size: 42px;

    margin-bottom: 12px;

    color: #bbb;

}

/* =========================================
   🔥 Premium Button Effects (Before/After)
========================================= */
.nav-link,
.login-btn {
    text-decoration: none;
    color: var(--pk_up_primary);
    padding: 0.4rem 1rem;
    border-radius: var(--pk_up_radius);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    /* For the shine effect */
    z-index: 1;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

/* Shine Effect Core */
.nav-link::before,
.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: all 0.5s ease;
    z-index: -1;
}

.nav-link:hover::before,
.login-btn:hover::before {
    left: 150%;
}

.nav-link:hover,
.login-btn:hover {
    background-color: var(--pk_up_secondary);
    color: var(--pk_up_white);
    border-color: var(--pk_up_secondary);
    box-shadow: var(--pk_up_shadow);
}

/* Brand Login Special Button Override */
.login-btn[style*="transparent"] {
    border-color: var(--pk_up_primary) !important;
    color: var(--pk_up_primary) !important;
}

.login-btn[style*="transparent"]:hover {
    background-color: var(--pk_up_primary) !important;
    color: var(--pk_up_white) !important;
}

/* ========================================= */

.nav-actions i {
    font-size: 1rem;
    color: var(--pk_up_primary);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--pk_up_primary);
}

/* ✅ Cleaned Up Dropdown CSS (No more duplicates) */
#dropdownMenu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: var(--pk_up_white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
    border-top: 1px solid var(--pk_up_gray-200);
    animation: slideDown 0.3s ease;
}

.dropdown-menu-container {
    padding: 10px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.dropdown-menu-container a {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: var(--pk_up_gray-800);
    text-decoration: none;
    font-size: var(--pk_up_font-size-base);
    font-weight: 500;
    border-bottom: 1px solid var(--pk_up_gray-100);
    transition: all 0.2s;
}

.dropdown-menu-container a:hover {
    background: var(--pk_up_gray-50);
    color: var(--pk_up_primary);
    padding-left: 35px;
}

.dropdown-menu-container a i {
    width: 25px;
    color: var(--pk_up_gray-500);
    margin-right: 10px;
    transition: 0.2s;
}

.dropdown-menu-container a:hover i {
    color: var(--pk_up_primary);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Profile Wrapper CSS --- */
.sh-profile-wrapper {
    position: relative;
    display: inline-block;
    margin-left: 10px;
}

.sh-profile-trigger {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid var(--pk_up_gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pk_up_gray-100);
    transition: all 0.3s ease;
}

.sh-profile-trigger:hover {
    border-color: var(--pk_up_primary);
}

.sh-profile-trigger img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.sh-initials {
    font-weight: 700;
    color: var(--pk_up_primary);
    font-size: 16px;
}

.sh-dropdown-panel {
    display: none;
    position: absolute;
    top: 55px;
    right: 0;
    width: 280px;
    background: var(--pk_up_white);
    border-radius: var(--pk_up_radius-md);
    box-shadow: var(--pk_up_shadow-lg);
    z-index: 10000;
    border: 1px solid var(--pk_up_gray-200);
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.sh-dropdown-panel.sh-show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.sh-user-details {
    padding: 20px;
    background: var(--pk_up_gray-50);
    border-bottom: 1px solid var(--pk_up_gray-200);
    display: flex;
    align-items: center;
    gap: 15px;
}

.sh-avatar-small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--pk_up_white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--pk_up_primary);
    font-size: 20px;
    border: 2px solid var(--pk_up_white);
    box-shadow: var(--pk_up_shadow-sm);
}

.sh-avatar-small img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.sh-info strong {
    display: block;
    font-size: 16px;
    color: var(--pk_up_gray-900);
    margin-bottom: 2px;
}

.sh-info span {
    font-size: 12px;
    color: var(--pk_up_gray-600);
    background: var(--pk_up_white);
    padding: 2px 8px;
    border-radius: 10px;
    border: 1px solid var(--pk_up_gray-300);
}

.sh-menu-links {
    padding: 10px 0;
}

.sh-menu-links a {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    color: var(--pk_up_gray-700);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s;
    position: relative;
}

.sh-menu-links a:hover {
    background: var(--pk_up_primary-light);
    color: var(--pk_up_primary);
    padding-left: 30px;
}

.sh-menu-links a i {
    width: 25px;
    color: var(--pk_up_gray-500);
    font-size: 16px;
    margin-right: 10px;
    transition: 0.2s;
}

.sh-menu-links a:hover i {
    color: var(--pk_up_primary);
}

.sh-highlight-link {
    color: var(--pk_up_success) !important;
    font-weight: 600;
}

.sh-highlight-link i {
    color: var(--pk_up_success) !important;
}

.sh-logout {
    color: var(--pk_up_danger) !important;
    margin-top: 5px;
    border-top: 1px solid var(--pk_up_gray-100);
}

.sh-logout:hover {
    background: #fff5f5 !important;
    color: #d63031 !important;
}

.sh-badge {
    background-color: #ff4500;
    /* লাল বা কমলা রঙ */
    color: #ffffff;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
    position: relative;
    top: -10px;
    left: -5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1400px) {
    .top-nav {
        padding: 0 1.5rem;
    }
}

@media (max-width: 992px) {
    .secondary-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        order: 1;
        margin-right: 15px;
    }

    .logo {
        order: 2;
        margin-right: auto;
    }

    .nav-actions {
        order: 3;
        gap: 0.6rem;
    }

    .media_p {
        padding-left: 15px;
        width: 35%;
    }

    .contact {
        width: 75%;
        left: 25%;
    }

    .img img {
        height: 30px;
    }

    .fast_whatssapp,
    .fast_masssage {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .top-header {
        flex-direction: column;
        height: auto;
        display: none;
    }

    .media_p {
        width: 100%;
        clip-path: none;
        padding: 10px 0;
        display: none;
    }

    .contact {
        position: relative;
        width: 100%;
        left: 0;
        clip-path: none;
        padding: 10px 0;
        justify-content: center;
        display: none;
    }

    .nav-link span {
        display: none;
    }

    #price {
        display: none;
    }
}

@media (max-width: 480px) {
    .top-nav {
        padding: 0 0.5rem;
    }

    .media_p {
        display: none;
    }

    .nav-actions {
        gap: 0.4rem;
    }

    .mobile-menu-btn {
        font-size: 1.2rem;
        padding: 8px;
    }

    .video {
        display: none;
    }

    .sh-profile-trigger {
        display: none;
    }
}