.dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
}


@media (max-width: 991px) {
    .main-menu {
        display: none;
        position: absolute;
        top: 85%;
        right: -1%;
        width: 50%;
        background: #fff;
        z-index: 1000;
        text-align: center;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease-in-out;
        border-radius: 10px;
    }

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

    .main-menu ul li {
        display: block;
        padding: 5px;
        border-bottom: 1px solid #ddd;
    }

    .main-menu ul li a {
        display: block;
        padding: 10px;
        text-decoration: none;
        color: #333;
        font-size: 22px;
    }
}
* {
    box-sizing: border-box
}

body, html {
    margin: 0 !important;
    padding: 0 !important
}

.page-wrapper {
    margin: 0 !important;
    padding: 0 !important
}

.breadcumb {
    padding: 0 !important;
    margin: 0 !important;
    display: none !important
}

.container, .container-fluid {
    margin-top: 0 !important;
    padding-top: 0 !important
}

.main-content, .content-wrapper, .site-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
    background: transparent !important
}

.vs-header.header-layout2 {
    position: absolute !important;
    top: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 9999 !important;
    max-width: 1200px;
    width: 100%;
    background: transparent;
    margin: 0 !important;
    padding: 10px;
    box-sizing: border-box;
    min-height: 100px
}

.header-wrapper-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px
}

.header-logo-section {
    flex-shrink: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 10px 0
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: rgba(26, 70, 69, .4);
    border-radius: 20px;
    margin: 10px 10px 10px 0;
    backdrop-filter: blur(10px);
    flex: 1;
    min-height: 80px;
    height: 100%
}

.header-logo img {
    max-height: 100px;
    width: auto;
    object-fit: contain;
    transition: all .3s ease
}

.header-nav-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-left: 30px
}

.header-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%
}

.header-links ul, .header-social ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
    align-items: center
}

.header-links ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color .3s ease;
    font-size: 14px
}

.header-links ul li a:hover {
    color: #ffd700
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
    padding-right: 20px
}

.notification-bell-container {
    position: relative;
    margin-left: 10px
}

.notification-bell-container .bell-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    transition: all .3s ease;
    color: #fff;
    font-size: 18px
}

.notification-bell-container .bell-icon:hover {
    background: rgba(255, 255, 255, .2);
    color: #ffd700;
    transform: scale(1.1)
}

.header-social ul {
    gap: 15px
}

.header-social ul li a {
    color: #fff;
    font-size: 18px;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center
}

.header-social ul li a:hover {
    color: #ffd700;
    transform: scale(1.1)
}

.bell-icon {
    color: #fff;
    font-size: 18px;
    transition: all .3s ease
}

.bell-icon:hover {
    color: #ffd700;
    transform: scale(1.1)
}

.bell-icon.has-notifications::after, .mobile-notification-bell.has-notifications::after {
    content: "";
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: #ff4757;
    border-radius: 50%;
    border: 2px solid #fff
}

.header-main-nav {
    display: flex;
    justify-content: flex-end
}

.main-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center
}

.main-menu ul li {
    position: relative
}

.main-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    transition: color .3s ease;
    padding: 8px 0;
    letter-spacing: .5px
}

.main-menu ul li a:hover {
    color: #ffd700
}

.main-menu ul li .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all .3s ease;
    z-index: 1000;
    list-style: none;
    margin: 0;
    padding: 10px 0
}

.main-menu ul li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.main-menu ul li .sub-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: #333;
    text-transform: none;
    font-weight: 500
}

.main-menu ul li .sub-menu li a:hover {
    background: #f1f5f9;
    color: #2563eb
}

.custom-user-btn {
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    border-radius: 30px;
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    transition: all .3s ease-in-out;
    white-space: nowrap;
    padding: 8px 16px
}

.custom-user-btn:hover {
    background: linear-gradient(45deg, #5a0ebd, #1f63e2);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .2)
}

.custom-dropdown {
    border-radius: 12px;
    min-width: 170px;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .15)
}

.custom-dropdown .dropdown-item {
    font-size: 14px;
    font-weight: 500;
    padding: 10px 15px;
    transition: background .2s ease
}

.custom-dropdown .dropdown-item:hover {
    background: #f1f5f9;
    color: #2563eb
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 4px
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all .3s ease;
    border-radius: 2px
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px)
}

.mobile-menu {
    position: absolute;
    top: 10%;
    left: 0;
    right: 0;
    background: rgba(26, 70, 69, .95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    z-index: 1000;
    margin: 0 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all .3s ease
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.mobile-menu-content {
    padding: 20px
}

.mobile-user-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.mobile-login-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 20px;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    border-radius: 25px;
    transition: all .3s ease
}

.mobile-login-btn:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .2)
}

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

.user-avatar {
    font-size: 40px;
    color: #fff
}

.user-details h6 {
    color: #fff;
    margin: 0;
    font-size: 18px;
    font-weight: 600
}

.user-type {
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    text-transform: capitalize
}

.mobile-user-actions {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.mobile-action-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    padding: 12px 15px;
    background: rgba(255, 255, 255, .1);
    border-radius: 10px;
    transition: all .3s ease;
    font-size: 14px
}

.mobile-action-btn:hover {
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, .2);
    transform: translateX(5px)
}

.mobile-action-btn.logout-btn {
    color: #ff6b6b
}

.mobile-action-btn.logout-btn:hover {
    background: rgba(255, 107, 107, .1)
}

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

.mobile-nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.mobile-nav ul li:last-child {
    border-bottom: none
}

.mobile-nav ul li a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 15px 10px;
    font-size: 16px;
    font-weight: 500;
    transition: all .3s ease
}

.mobile-nav ul li a:hover {
    color: #ffd700;
    padding-left: 10px
}

.mobile-submenu-item {
    position: relative
}

.mobile-submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.mobile-submenu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    background: rgba(255, 255, 255, .1);
    border-radius: 10px;
    margin-top: 10px
}

.mobile-submenu.active {
    display: block
}

.mobile-submenu li {
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.mobile-submenu li:last-child {
    border-bottom: none
}

.mobile-submenu li a {
    padding: 12px 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, .8)
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1)
}

.mobile-social a, .mobile-notification-bell {
    color: #fff;
    font-size: 20px;
    transition: all .3s ease
}

.mobile-social a:hover, .mobile-notification-bell:hover {
    color: #ffd700;
    transform: scale(1.1)
}

.notification-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
    border: 1px solid #e2e8f0;
    min-width: 300px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all .3s ease
}

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

.notification-header {
    padding: 15px 20px;
    border-bottom: 1px solid #e2e8f0;
    background: #f8f9fa;
    border-radius: 12px 12px 0 0
}

.notification-header h6 {
    margin: 0;
    color: #333;
    font-weight: 600;
    font-size: 16px
}

.notification-footer {
    padding: 15px 20px;
    border-top: 1px solid #e2e8f0;
    background: #f8f9fa;
    border-radius: 0 0 12px 12px;
    text-align: center
}

.notification-footer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px
}

.notification-footer a:hover {
    text-decoration: underline
}

#notificationList {
    list-style: none;
    margin: 0;
    padding: 0
}

.notification-item {
    padding: 15px 20px;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    transition: background .2s ease
}

.notification-item:hover {
    background: #f8f9fa
}

.notification-item:last-child {
    border-bottom: none
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px
}

.notification-text {
    flex: 1
}

.notification-title {
    font-weight: 500;
    color: #333;
    font-size: 14px;
    margin-bottom: 4px
}

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

.unread-indicator {
    width: 8px;
    height: 8px;
    background: #667eea;
    border-radius: 50%;
    flex-shrink: 0
}

.notification-item.unread {
    background: rgba(102, 126, 234, .05)
}

@media (max-width: 1199px) {
    .vs-header.header-layout2 {
        min-height: 90px
    }

    .header-wrapper-flex {
        gap: 15px
    }

    .header-container {
        margin: 8px 8px 8px 0;
        min-height: 75px
    }

    .header-logo img {
        max-height: 55px
    }

    .main-menu ul {
        gap: 25px
    }

    .main-menu ul li a {
        font-size: 15px
    }
}

@media (max-width: 991px) {
    .vs-header.header-layout2 {
        min-height: 80px;
        padding: 5px 8px;
        max-width: 100%;
        width: calc(100% - 16px)
    }

    .header-wrapper-flex {
        gap: 10px;
        flex-wrap: nowrap
    }

    .header-nav-section {
        display: none !important
    }

    .mobile-menu-toggle {
        display: flex !important
    }

    .header-container {
        margin: 5px 5px 5px 0;
        padding: 12px 15px;
        min-height: 70px;
        flex-shrink: 1
    }

    .header-logo img {
        max-height: 50px
    }
}

@media (max-width: 767px) {
    .vs-header.header-layout2 {
        min-height: 75px;
        padding: 3px 5px;
        max-width: 100%;
        width: calc(100% - 10px)
    }

    .header-wrapper-flex {
        gap: 8px;
        flex-wrap: nowrap
    }

    .header-container {
        margin: 3px 3px 3px 0;
        padding: 10px 12px;
        min-height: 65px;
        flex-shrink: 1
    }

    .header-logo img {
        max-height: 45px
    }

    .custom-user-btn, .link-btn.style2 {
        font-size: 12px;
        padding: 6px 12px
    }
}

@media (max-width: 575px) {
    .vs-header.header-layout2 {
        min-height: 70px;
        padding: 2px 3px;
        max-width: 100%;
        width: calc(100% - 6px)
    }

    .header-wrapper-flex {
        gap: 5px;
        flex-wrap: nowrap
    }

    .header-container {
        margin: 2px 2px 2px 0;
        padding: 8px 10px;
        min-height: 60px;
        flex-shrink: 1
    }

    .header-logo img {
        max-height: 40px
    }

    .custom-user-btn, .link-btn.style2 {
        font-size: 11px;
        padding: 5px 10px
    }

    .custom-dropdown {
        min-width: 150px
    }

    .custom-dropdown .dropdown-item {
        font-size: 13px;
        padding: 8px 12px
    }
}

@media (max-width: 400px) {
    .vs-header.header-layout2 {
        min-height: 65px;
        padding: 1px 2px;
        max-width: 100%;
        width: calc(100% - 4px)
    }

    .header-wrapper-flex {
        gap: 3px;
        flex-wrap: nowrap
    }

    .header-container {
        margin: 1px 1px 1px 0;
        padding: 6px 8px;
        min-height: 55px;
        flex-shrink: 1
    }

    .header-logo img {
        max-height: 35px
    }

    .custom-user-btn, .link-btn.style2 {
        font-size: 10px;
        padding: 4px 8px
    }

    .mobile-menu {
        margin: 0 6px;
        border-radius: 16px
    }

    .mobile-menu-content {
        padding: 16px
    }
}
