@import url('https://fonts.maateen.me/solaiman-lipi/font.css');
        body{
            font-family: 'SolaimanLipi', sans-serif !important;
}
        .news-ticker {
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
  overflow: hidden;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.ticker-label {
  padding: 0 10px;
  background-color: white;
  color: black;
  font-size: 20px;
  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; /* much slower speed */
}

.ticker-move a {
  margin: 0 10px;
  color: #000000; /* black text */
  text-decoration: none;
  padding: 10px;
  border-left: 2px solid black;
  transition: color 0.3s;
  font-size: 16px;
}

.ticker-move a:hover {
  color: #4f46e5;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.paused {
  animation-play-state: paused !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;
            /* allow the navigation to overflow horizontally on small screens */
            overflow: visible;
        }

        /* Keep nav items on one line and enable horizontal scrolling when needed */
        .primary-nav-menu {
            display: flex;
            list-style: none;
            margin: 0;
            flex-grow: 1;
            white-space: nowrap; /* prevent wrapping */
            overflow-x: auto; /* allow horizontal scroll when items overflow */
            -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
            scrollbar-width: thin; /* Firefox: make scrollbar thin */
            scrollbar-color: #cfcfcf transparent; /* Firefox colors */
            position: relative; /* required for overlay thumb positioning */
        }

        .nav-menu-item {
            margin-right: 35px;
            flex: 0 0 auto; /* prevent flex items from shrinking/wrapping */
        }

        .nav-link-element {
            text-decoration: none;
            color: #495057;
            font-size: 17px;
            font-weight: 500;
            padding: 8px 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;
        }

        /* WebKit scrollbar styling for the horizontal nav */
        /* WebKit scrollbar styling for the horizontal nav */
        .primary-nav-menu::-webkit-scrollbar {
            height: 8px;
        }

        /* Hide scrollbar visuals by default (transparent) */
        .primary-nav-menu::-webkit-scrollbar-track {
            background: transparent;
        }

        .primary-nav-menu::-webkit-scrollbar-thumb {
            background: rgba(0, 0, 0, 0); /* hidden */
            border-radius: 6px;
            transition: background-color 0.18s ease;
        }

        /* Show the thumb when hovering or when `.scrolling` class is present */
        .primary-nav-menu:hover::-webkit-scrollbar-thumb,
        .primary-nav-menu.scrolling::-webkit-scrollbar-thumb {
            background: rgba(0, 0, 0, 0.12);
        }

        .primary-nav-menu:hover::-webkit-scrollbar-thumb:hover,
        .primary-nav-menu.scrolling::-webkit-scrollbar-thumb:hover {
            background: rgba(0, 0, 0, 0.18);
        }

        /* Firefox: hide by default, show when scrolling/hover */
        .primary-nav-menu {
            scrollbar-color: transparent transparent;
        }

        .primary-nav-menu.scrolling {
            scrollbar-color: #cfcfcf transparent;
        }

        /* Overlay thumb (mobile-like) - appears while interacting */
        .nav-scroll-thumb {
            position: absolute;
            bottom: 6px; /* same area as the hidden native scrollbar */
            left: 0;
            height: 3px; /* slimmer, half-bar look */
            width: 40px; /* will be updated via JS */
            background: rgba(0, 0, 0, 0.10); /* low opacity */
            border-radius: 999px;
            transform: translateX(0);
            opacity: 0;
            pointer-events: none; /* don't block pointer/touch */
            transition: opacity 0.18s ease, transform 0.12s linear, width 0.12s linear;
            will-change: transform, width, opacity;
            box-shadow: 0 2px 6px rgba(0,0,0,0.08); /* subtle shadow */
        }

        .nav-scroll-thumb.show {
            opacity: 0.22; /* low, subtle visible state */
        }

        /* Slightly larger thumb on small screens for easier touch */
        @media (max-width: 768px) {
            .nav-scroll-thumb { height: 5px; }
        }

        .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: 5px 30px;
            }

            .header-content-flex {
                flex-wrap: wrap;
            }

            .logo-image-element {
                height: 70px;
                max-width: 150px;
            }

            .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: 8px 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: 120px;
            }

            .mobile-sidebar-panel {
                width: 280px;
                right: -280px;
            }

            .nav-menu-item {
                margin-right: 20px;
            }

            .nav-link-element {
                font-size: 13px;
            }
        }

        /* Modern Clean Footer - Light Theme */
        .footer-wrapper {
            background: #fff;
            color: #333;
            margin-top: 40px;
            border-top: 1px solid #e5e5e5;
        }

        .footer-main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px 30px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        /* Footer Brand Section */
        .footer-brand {
            flex: 0 0 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 25px;
            border-bottom: 1px solid #e5e5e5;
        }

        .footer-logo {
            display: flex;
            align-items: center;
        }

        .footer-logo .logo-image {
            max-width: 180px;
            height: auto;
        }

        .footer-description {
            display: none;
        }

        /* Social Icons Section */
        .footer-social {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .footer-social h4 {
            font-size: 13px;
            color: #666;
            font-weight: 400;
            margin: 0;
        }

        .social-icons {
            display: flex;
            gap: 8px;
        }

        .social-icons a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            transition: all 0.2s ease;
            text-decoration: none;
            color: #fff;
        }

        .social-icons a[aria-label="Facebook"] {
            background: #1877f2;
        }

        .social-icons a[aria-label="Twitter"] {
            background: #000;
        }

        .social-icons a[aria-label="Instagram"] {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
        }

        .social-icons a[aria-label="YouTube"] {
            background: #ff0000;
        }

        .social-icons a[aria-label="WhatsApp"] {
            background: #25d366;
        }

        .social-icons a[aria-label="TikTok"] {
            background: #000;
        }

        .social-icons a:hover {
            transform: translateY(-2px);
            opacity: 0.9;
        }

        /* Footer Description Section */
        .footer-description-section {
            flex: 0 0 100%;
            text-align: center;
            padding: 15px 20px;
            background: #f9f9f9;
            border-radius: 6px;
        }

        .footer-description-section p {
            margin: 0;
            font-size: 14px;
            color: #555;
            line-height: 1.6;
        }

        /* Footer Links */
        .footer-links {
            flex: 0 0 100%;
            padding: 25px 0;
            border-bottom: 1px solid #e5e5e5;
        }

        .footer-links h4 {
            display: none;
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px 25px;
        }

        .footer-links ul li {
            position: relative;
        }

        .footer-links ul li:not(:last-child)::after {
            content: '•';
            position: absolute;
            right: -16px;
            color: #999;
        }

        .footer-links ul li a {
            color: #333;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s ease;
        }

        .footer-links ul li a:hover {
            color: #e74c3c;
        }

        /* Footer Contact Row */
        .footer-contact-row {
            flex: 0 0 100%;
            display: flex;
            justify-content: center;
            gap: 30px;
            padding: 15px 0;
            flex-wrap: wrap;
        }

        .footer-contact-row span {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #555;
        }

        .footer-contact-row span i {
            color: #e74c3c;
            font-size: 14px;
        }

        .footer-contact-row span a {
            color: #333;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-contact-row span a:hover {
            color: #e74c3c;
        }

        /* Footer Contact - Hidden in this design */
        .footer-contact {
            display: none;
        }

        /* Footer Bottom */
        .footer-bottom {
            flex: 0 0 100%;
            background: #f8f8f8;
            padding: 15px 20px;
            margin: 0 -20px -30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            text-align: center;
        }

        .footer-editor p {
            margin: 0;
            font-size: 13px;
            color: #666;
        }

        .footer-editor p strong {
            color: #333;
        }

        .footer-copyright p {
            margin: 0;
            font-size: 12px;
            color: #888;
        }

        /* Responsive Footer */
        @media (max-width: 992px) {
            .footer-brand {
                flex-direction: column;
                gap: 20px;
            }

            .footer-social {
                flex-direction: column;
                gap: 10px;
            }
        }

        @media (max-width: 768px) {
            .footer-main {
                padding: 30px 15px 25px;
            }

            .footer-links ul {
                gap: 10px 20px;
            }

            .footer-links ul li:not(:last-child)::after {
                right: -13px;
            }

            .footer-links ul li a {
                font-size: 13px;
            }

            .social-icons a {
                width: 34px;
                height: 34px;
                font-size: 14px;
            }

            .footer-bottom {
                padding: 12px 15px;
                margin: 0 -15px -25px;
            }
        }

        @media (max-width: 480px) {
            .footer-logo .logo-image {
                max-width: 150px;
            }

            .footer-links ul {
                gap: 8px 15px;
            }

            .footer-links ul li:not(:last-child)::after {
                right: -10px;
            }

            .footer-links ul li a {
                font-size: 12px;
            }

            .social-icons a {
                width: 32px;
                height: 32px;
                font-size: 13px;
            }

            .footer-editor p {
                font-size: 12px;
            }

            .footer-copyright p {
                font-size: 11px;
            }
        }