  @import url('https://fonts.maateen.me/solaiman-lipi/font.css');
             body{
            font-family: 'SolaimanLipi', sans-serif !important;
}
.primary-header-wrapper {
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 1000;
        }

        .header-top-section {
            padding: 10px 80px;
            border-bottom: 1px solid #e9ecef;
        }

        .header-content-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .brand-logo-container {
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .brand-logo-container:hover {
            transform: scale(1.02);
        }

        .logo-image-element {
            height: 80px;
            width: auto;
            max-width: 300px;
            object-fit: contain;
        }

        .header-action-group {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .search-wrapper-container {
            position: relative;
        }

        .search-input-box {
            display: flex;
            align-items: center;
            background: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 8px;
            padding: 10px 15px;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .search-input-box:focus-within {
            border-color: #495057;
            box-shadow: 0 0 0 3px rgba(73, 80, 87, 0.1);
        }

        .search-icon-svg {
            width: 16px;
            height: 16px;
            margin-right: 10px;
            fill: #6c757d;
        }

        .search-field-input {
            border: none;
            background: none;
            outline: none;
            padding: 0;
            font-size: 14px;
            width: 200px;
            color: #495057;
        }

        .search-field-input::placeholder {
            color: #6c757d;
        }

        .date-info-display {
            display: flex;
            align-items: center;
            font-size: 14px;
            color: #6c757d;
            font-weight: 500;
        }

        .date-icon-svg {
            width: 16px;
            height: 16px;
            margin-right: 8px;
            fill: #6c757d;
        }

        .header-button-element {
            background-color: white;
            color: black;
            border: none;
            padding: 10px 18px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .header-button-element svg {
            width: 16px;
            height: 16px;
            fill: black;
        }

        .mobile-menu-button {
            display: none;
            background: white;
            border: none;
            padding: 10px;
            border-radius: 6px;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .mobile-menu-button svg {
            width: 40px;
            height: 40px;
            fill: black;
        }

        .main-navigation-section {
            background: white;
            border-top: 1px solid #e9ecef;
            padding: 0 30px;
            position: sticky;
            top: 0;
            z-index: 999;
        }

        .nav-content-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .primary-nav-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            flex-grow: 1;
        }

        .nav-menu-item {
            margin-right: 35px;
        }

        .nav-link-element {
            text-decoration: none;
            color: #495057;
            font-size: 15px;
            font-weight: 500;
            padding: 18px 0;
            display: block;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link-element::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #495057;
            transition: width 0.3s ease;
        }

        .nav-link-element:hover {
            color: #212529;
        }

        .nav-link-element:hover::after {
            width: 100%;
        }

        .nav-actions-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .mobile-actions-group {
            display: none;
        }

        /* Mobile Sidebar */
        .mobile-sidebar-panel {
            position: fixed;
            top: 0;
            right: -350px;
            width: 350px;
            height: 100vh;
            background: white;
            z-index: 9999;
            transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
            display: flex;
            flex-direction: column;
        }

        .mobile-sidebar-panel.sidebar-active {
            right: 0;
        }

        .sidebar-header-container {
            padding: 25px;
            border-bottom: 1px solid #e9ecef;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-shrink: 0;
        }

        .sidebar-title-text {
            color: #495057;
            font-size: 20px;
            font-weight: 600;
        }

        .sidebar-close-btn {
            background: #f8f9fa;
            border: 1px solid #dee2e6;
            color: #495057;
            padding: 8px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .sidebar-close-btn:hover {
            background: #e9ecef;
            transform: rotate(90deg);
        }

        .sidebar-close-btn svg {
            width: 18px;
            height: 18px;
            fill: #495057;
        }

        .sidebar-menu-container {
            flex: 1;
            overflow-y: auto;
            padding: 20px 0;
        }

        .sidebar-menu-container::-webkit-scrollbar {
            width: 6px;
        }

        .sidebar-menu-container::-webkit-scrollbar-track {
            background: #f8f9fa;
        }

        .sidebar-menu-container::-webkit-scrollbar-thumb {
            background: #dee2e6;
            border-radius: 3px;
        }

        .sidebar-menu-container::-webkit-scrollbar-thumb:hover {
            background: #adb5bd;
        }

        .sidebar-menu-link {
            display: block;
            color: #495057;
            text-decoration: none;
            padding: 15px 25px;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }

        .sidebar-menu-link:hover {
            background: #f8f9fa;
            border-left-color: #495057;
            color: #212529;
        }

        .sidebar-overlay-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .sidebar-overlay-bg.overlay-active {
            opacity: 1;
            visibility: visible;
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .header-top-section {
                padding: 10px 20px;
            }

            .header-content-flex {
                flex-wrap: wrap;
            }

            .logo-image-element {
                height: 70px;
                max-width: 200px;
            }

            .header-action-group {
                gap: 15px;
            }

            .search-input-box {
                display: none;
            }

            .date-info-display {
                display: none;
            }

            .header-button-element {
                display: none;
            }

            .mobile-actions-group {
                display: flex;
                align-items: center;
                gap: 10px;
            }

            .mobile-menu-button {
                display: block;
            }

            .mobile-sidebar-panel {
                width: 300px;
                right: -300px;
            }

            .main-navigation-section {
                padding: 0 20px;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }

            .nav-content-container {
                min-width: max-content;
            }

            .primary-nav-menu {
                min-width: max-content;
            }

            .nav-menu-item {
                margin-right: 25px;
            }

            .nav-link-element {
                padding: 15px 0;
                font-size: 14px;
                white-space: nowrap;
            }

            .nav-actions-container {
                min-width: max-content;
                padding-left: 20px;
            }

            .main-navigation-section::-webkit-scrollbar {
                height: 3px;
            }

            .main-navigation-section::-webkit-scrollbar-track {
                background: #f8f9fa;
            }

            .main-navigation-section::-webkit-scrollbar-thumb {
                background: #dee2e6;
                border-radius: 2px;
            }

            .main-navigation-section::-webkit-scrollbar-thumb:hover {
                background: #adb5bd;
            }
        }

        @media (max-width: 480px) {
            .logo-image-element {
                height: 70px;
                max-width: 200px;
            }

            .mobile-sidebar-panel {
                width: 280px;
                right: -280px;
            }

            .nav-menu-item {
                margin-right: 20px;
            }

            .nav-link-element {
                font-size: 13px;
            }
        }

     
    .news-ticker {
      display: flex;
      align-items: center;
      width: 100%;
      background-color: #f1f5f9;
      height: 50px;
      overflow: hidden;
    }

    .ticker-label {
      padding: 0 15px;
      background-color: white;
      color: rgb(88, 53, 213);
      font-weight: 600;
      font-size: 17px;
      height: 100%;
      display: flex;
      align-items: center;
      border-top-right-radius: 8px;
      border-bottom-right-radius: 8px;
      box-shadow: 2px 0 8px rgba(0, 0, 0, 0.08);
      z-index: 2;
    }

    .ticker-container {
      flex: 1;
      overflow: hidden;
      position: relative;
    }

    .ticker-move {
      display: inline-block;
      white-space: nowrap;
      padding-left: 100%;
      animation: scroll-left 80s linear infinite;
    }

    .ticker-move a {
      margin: 0 10px;
      color: #0f172a;
      text-decoration: none;
      padding: 10px;
      border-left: 2px solid blue;
      transition: color 0.3s;
    }

    .ticker-move a:hover {
      color: #4f46e5;
    }

    @keyframes scroll-left {
      0% { transform: translateX(0); }
      100% { transform: translateX(-100%); }
    }

    .paused {
      animation-play-state: paused !important;
    }