
        :root {
            --primary: #2563eb;
            --primary-light: #dbeafe;
            --primary-dark: #1e40af;
            --dark: #1e293b;
            --light: #f8fafc;
            --gray: #64748b;
            --light-gray: #e2e8f0;
            --white: #ffffff;
            
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;
            --radius-full: 9999px;
            
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            
            --transition: all 0.2s ease;
            --transition-slow: all 0.3s ease;
            
            --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font-sans);
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--light);
        }

        .container {
            width: 100%;
            max-width: 1800px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Main Layout Structure */
        .main-content {
            padding: 2rem 0;
        }

        /* Mobile Widgets Container */
        .widgets-mobile-container {
            display: none;
            margin-bottom: 2rem;
        }

        /* Blog Layout Grid */
        .blog-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        /* Blog Main Content */
        .blog-main {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        /* Blog Sidebar */
        .blog-sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        /* Widget Common Styles */
        .sidebar-widget {
            background: var(--white);
            padding: 1.5rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
        }

        .widget-title {
            font-size: 1.25rem;
            margin-bottom: 1.25rem;
            color: var(--dark);
            position: relative;
            padding-bottom: 0.5rem;
        }

        .widget-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary);
            border-radius: var(--radius-full);
        }

        /* Search Widget */
        .search-form {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .search-input {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid var(--light-gray);
            border-radius: var(--radius-md);
            font-size: 1rem;
            transition: var(--transition);
        }

        .search-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

        .search-button {
            padding: 0.75rem;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: var(--radius-md);
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .search-button:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        /* Category List */
        .category-list {
            list-style: none;
        }

        .category-item {
            margin-bottom: 0.75rem;
        }

        .category-item:last-child {
            margin-bottom: 0;
        }

        .category-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 0;
            color: var(--dark);
            border-bottom: 1px dashed rgba(0,0,0,0.1);
            transition: var(--transition);
            text-decoration: none;
        }

        .category-link:hover {
            color: var(--primary);
            border-bottom-color: var(--primary-light);
        }

        .category-count {
            background: var(--primary-light);
            color: var(--primary);
            padding: 0.25rem 0.75rem;
            border-radius: var(--radius-full);
            font-size: 0.8rem;
            font-weight: 600;
        }

        /* Popular Posts */
        .popular-posts {
            list-style: none;
        }

        .popular-post {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed rgba(0,0,0,0.1);
        }

        .popular-post:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .popular-post-image {
            width: 80px;
            height: 60px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            flex-shrink: 0;
        }

        .popular-post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .popular-post:hover .popular-post-image img {
            transform: scale(1.05);
        }

        .popular-post-content {
            flex-grow: 1;
        }

        .popular-post-title {
            font-size: 0.95rem;
            margin-bottom: 0.25rem;
            line-height: 1.4;
        }

        .popular-post-title a {
            color: var(--dark);
            text-decoration: none;
            transition: var(--transition);
        }

        .popular-post-title a:hover {
            color: var(--primary);
        }

        .popular-post-meta {
            font-size: 0.8rem;
            color: var(--gray);
        }

        /* Blog Posts Grid */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .blog-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition-slow);
            border: 1px solid rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary-light);
        }

        .card-image-container {
            position: relative;
            width: 100%;
            height: 200px;
            overflow: hidden;
        }

        .card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-slow);
        }

        .blog-card:hover .card-image {
            transform: scale(1.05);
        }

        .card-body {
            padding: 1.25rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .card-title {
            font-size: 1.1rem;
            margin-bottom: 0.75rem;
            line-height: 1.4;
        }

        .card-title a {
            color: var(--dark);
            text-decoration: none;
            transition: var(--transition);
        }

        .card-title a:hover {
            color: var(--primary);
        }

        .card-meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem;
            margin-bottom: 0.75rem;
            font-size: 0.85rem;
            color: var(--gray);
        }

        .card-excerpt {
            margin-bottom: 1rem;
            color: var(--dark);
            line-height: 1.6;
            flex-grow: 1;
        }

        .card-footer {
            padding: 1rem 1.25rem;
            border-top: 1px solid rgba(0,0,0,0.05);
        }

        .read-more {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: var(--primary);
            color: var(--white);
            border-radius: var(--radius-md);
            font-size: 0.9rem;
            font-weight: 500;
            text-decoration: none;
            transition: var(--transition);
            width: 100%;
            text-align: center;
        }

        .read-more:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        /* No Posts Message */
        .no-posts {
            text-align: center;
            padding: 3rem 2rem;
            background: var(--white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            list-style: none;
        }

        .page-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 0 0.75rem;
            border: 1px solid var(--light-gray);
            border-radius: var(--radius-md);
            color: var(--dark);
            text-decoration: none;
            transition: var(--transition);
        }

        .page-link:hover {
            background: var(--primary-light);
            border-color: var(--primary-light);
        }

        .page-item.active .page-link {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--white);
        }

        /* Mobile Category Toggle */
        .category-toggle-container {
            margin-top: 1rem;
        }

        .category-toggle-button {
            display: none;
        }

        /* Hidden Mobile - Show on Desktop */
        .hidden-mobile {
            display: block;
        }

        /* Mobile View (under 992px) */
        @media (max-width: 991px) {
            .widgets-mobile-container {
                display: block;
            }
            
            .hidden-mobile {
                display: none !important;
            }
            
            .category-toggle-button {
                display: block;
                width: 100%;
                padding: 0.8rem 1.25rem;
                background: var(--primary);
                color: var(--white);
                border: none;
                border-radius: var(--radius-md);
                font-weight: 500;
                cursor: pointer;
                transition: var(--transition);
                text-align: center;
                margin-bottom: 1rem;
            }
            
            .category-toggle-button:hover {
                background: var(--primary-dark);
                transform: translateY(-2px);
                box-shadow: var(--shadow);
            }
            
            .category-toggle-button i {
                margin-left: 0.5rem;
                transition: transform 0.3s ease;
            }
            
            .category-toggle-button.active i {
                transform: rotate(180deg);
            }
            
            .post-category-widget {
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease-out;
                margin-bottom: 0;
                background: var(--white);
                border-radius: var(--radius-md);
                box-shadow: var(--shadow);
            }
            
            .post-category-widget.active {
                max-height: 1000px;
                margin-bottom: 1.5rem;
                padding: 1.5rem;
                border: 1px solid rgba(0,0,0,0.05);
            }
        }

        /* Desktop View (992px and up) */
        @media (min-width: 992px) {
            .widgets-mobile-container {
                display: none;
            }
            
            .hidden-mobile {
                display: block !important;
            }
            
            .blog-layout {
                grid-template-columns: 75% 25%;
                align-items: flex-start;
            }
            
            .blog-sidebar {
                position: sticky;
                top: 100px;
            }
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .blog-card {
            animation: fadeIn 0.5s ease forwards;
            opacity: 0;
        }

        .blog-card:nth-child(1) { animation-delay: 0.1s; }
        .blog-card:nth-child(2) { animation-delay: 0.2s; }
        .blog-card:nth-child(3) { animation-delay: 0.3s; }
        .blog-card:nth-child(4) { animation-delay: 0.4s; }
        .blog-card:nth-child(5) { animation-delay: 0.5s; }

        /* Hero Section */
        .hero {
             background: linear-gradient(135deg, #4361ee, #3a0ca3);
            color: var(--white);
            padding: 5rem 0 5rem;
            text-align: center;
            position: relative;
            overflow: hidden; 
        }


.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        
        }

        .hero-title {
            font-size: clamp(2rem, 8vw, 2.5rem);
              font-weight: 800;
            margin-top: 3rem;
            margin-bottom: 1rem;
            color: var(--white);
             text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .hero-description {
            font-size: clamp(1rem, 2vw, 1.25rem);
            margin-bottom: 1rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
        }

        /* Breadcrumb */
        .breadcrumb {
            background-color: #F0F0F0 !important;
            padding: 1rem 0 !important;
            border-bottom: 1px solid var(--light-gray) !important;
        }

        .breadcrumb-list {
            display: flex !important;
            flex-wrap: wrap !important;
            list-style: none !important;
            padding: 0 !important;
            margin: 0 !important;
            font-size: 0.9rem !important;
            font-weight: 500;
          
        }

        .breadcrumb-item {
            display: flex !important;
            align-items: center !important;
            margin-right: 0.5rem !important;
        }

        .breadcrumb-item:not(:last-child)::after {
            content: '/' !important;
            margin-left: 0.5rem !important;
            color: var(--gray) !important;
        }

        .breadcrumb-link {
            color: var(--primary) !important;
            transition: var(--transition) !important;
            text-decoration: none !important;
        }

        .breadcrumb-link:hover {
            color: var(--primary-dark) !important;
             text-decoration: underline !important;
        }

        .breadcrumb-current {
            color: var(--gray) !important;
            pointer-events: none !important;
        }
          .breadcrumb {
    color: #e2e8f0;
  }

        /* Header Styles */
        :root {
            --text-dark: #111;
            --primary: #3498db;
            --secondary: #2ecc71;
            --bg-dark: #0f172a;
            --text-light: #ffffff;
            --transition: all 0.3s ease;
        }

        .smart-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 2);
            color: var(--bg-dark);
            padding: 1rem 2rem;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .smart-header.scrolled {
            background-color: rgba(44, 62, 80, 0.95);
            color: var(--text-light);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .smart-header.dark-mode {
            background-color: var(--bg-dark);
            color: var(--text-light);
        }

        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        /* Logo Styles */
        .logo {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            text-decoration: none;
            height: 40px;
        }

        .logo-mark {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-mark img {
            width: 100%;
            height: auto;
            max-height: 40px;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .logo-type {
            font-size: 1.7rem;
            font-weight: 750;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            transition: var(--transition);
        }

        .logo:hover .logo-mark img {
            transform: scale(1.1);
        }

        .smart-header.scrolled .logo-type {
            color: var(--text-light);
            background: none;
            -webkit-background-clip: initial;
            background-clip: initial;
        }

        /* Navigation Styles */
        .primary-nav {
            display: flex;
            align-items: center;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            align-items: center;
        }

        .nav-menu > li {
            position: relative;
            margin-left: 1.5rem;
        }

        .nav-link {
            color: inherit;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            padding: 0.5rem 0;
            display: inline-block;
            position: relative;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: var(--transition);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Dropdown styles */
        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            min-width: 200px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            border-radius: 4px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            z-index: 10;
            list-style: none;
        }

        .dropdown-menu li {
            padding: 0.75rem 1.25rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .dropdown-menu li:last-child {
            border-bottom: none;
        }

        .dropdown-menu .nav-link {
            color: var(--bg-dark);
            white-space: nowrap;
        }

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

        .smart-header.dark-mode .dropdown-menu {
            background-color: var(--bg-dark);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .smart-header.dark-mode .dropdown-menu .nav-link {
            color: var(--text-light);
        }

        /* Button styles */
        .header-button {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: white;
            padding: 0.6rem 0.6rem;
            border-radius: 4px;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            margin-left: 1.5rem;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .header-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }

        /* Mobile styles */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        .toggle-line {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--text-dark);
            margin: 5px 0;
            transition: var(--transition);
        }

        .smart-header.scrolled .toggle-line,
        .smart-header.dark-mode .toggle-line {
            background-color: var(--text-light);
        }

        /* Hamburger animation */
        .mobile-toggle[aria-expanded="true"] .toggle-line:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .mobile-toggle[aria-expanded="true"] .toggle-line:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle[aria-expanded="true"] .toggle-line:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }

            .primary-nav {
                position: fixed;
                top: 50px;
                left: 0;
                width: 100%;
                height: calc(100vh - 50px);
                background-color: white;
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                clip-path: circle(0px at 90% -10%);
                -webkit-clip-path: circle(0px at 90% -10%);
                transition: all 0.5s ease-out;
                overflow-y: auto;
                z-index: 1000;
            }

            .primary-nav.open {
                clip-path: circle(1500px at 90% -10%);
                -webkit-clip-path: circle(1500px at 90% -10%);
                pointer-events: auto;
            }

            .nav-menu {
                flex-direction: column;
                align-items: center;
                width: 100%;
                padding: 2rem;
            }

            .nav-menu > li {
                margin: 1rem 0;
                width: 100%;
                text-align: center;
                opacity: 0;
            }

            .dropdown-menu {
                position: static;
                display: none;
                width: 100%;
                background-color: rgba(0, 0, 0, 0.05);
                box-shadow: none;
                margin-top: 0.5rem;
                opacity: 1;
                visibility: visible;
                transform: none;
            }

            .dropdown.active .dropdown-menu {
                display: block;
            }

            .primary-nav.active > .nav-menu > li {
                opacity: 1;
            }

            .header-button {
                margin: 0rem 0 0;
                width: 80%;
                max-width: 200px;
                text-align: center;
                display: block;
                margin-left: auto;
                margin-right: auto;
                padding: 0.5rem 0.5rem;
            }
        }

        /* Footer Styles */
        .container-fluid {
            max-width: 1800px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .ushasoft-footer {
            background-color: #0f172a;
            color: #e2e8f0;
            padding: 3rem 0 1.5rem;
            font-family: 'Inter', sans-serif;
        }

        .footer-columns-container {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            padding-bottom: 2rem;
            margin-bottom: 1.5rem;
            border-bottom: 1px solid rgba(226, 232, 240, 0.1);
        }

        .footer-columns-container > div {
            flex: 1;
            min-width: 200px;
        }

        .footer-brand-col .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.25rem;
            font-weight: 600;
            color: white;
            text-decoration: none;
            margin-bottom: 1rem;
        }

        .footer-logo {
            display: inline-flex;
            align-items: center;
            justify-content: flex-start;
            gap: 1px;
            text-decoration: none;
            width: 40%;
            text-align: left;
        }

        .brand-name {
            font-size: 1.7rem;  
        }

        .footer-brand-col {
            text-align: left;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .footer-brand-col .footer-tagline {
            color: #94a3b8;
            font-size: 0.875rem;
            line-height: 1.5;
            margin-bottom: 1.5rem;
            text-align: justify;
        }

        .social-links {
            display: flex;
            gap: 0.75rem;
        }

        .social-links a {
            color: #94a3b8;
            transition: color 0.2s ease;
        }

        .social-links a:hover {
            color: #3b82f6;
        }

        .footer-links-col h3 {
            font-size: 1rem;
            font-weight: 600;
            color: white;
            margin-bottom: 1rem;
        }

        .footer-links-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.05rem;
        }

        .footer-links-col li {
            position: relative;
            padding-left: 0;
            transition: all 0.3s ease;
        }

        .footer-links-col a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.875rem;
            transition: all 0.3s ease;
            display: inline-block;
            padding: 0.15rem 0;
        }

        .footer-links-col a:hover {
            color: #3b82f6;
            transform: translateX(5px);
        }

        .footer-links-col a:hover::after {
            content: "→";
            margin-left: 8px;
            color: #3b82f6;
            display: inline-block;
        }

        .footer-newsletter-col h3 {
            font-size: 1rem;
            font-weight: 600;
            color: white;
            margin-bottom: 0.75rem;
        }

        .footer-newsletter-col p {
            color: #94a3b8;
            font-size: 0.875rem;
            margin-bottom: 1rem;
        }

        .newsletter-form {
            position: relative;
        }

        .newsletter-form input {
            width: 100%;
            padding: 0.5rem;
            border-radius: 4px;
            border: 1px solid #334155;
            background-color: #1e293b;
            color: white;
            font-size: 0.875rem;
        }

        .newsletter-form button {
            position: absolute;
            right: 0.25rem;
            top: 0.25rem;
            bottom: 0.25rem;
            width: 28px;
            background-color: #3b82f6;
            color: white;
            border: none;
            border-radius: 3px;
            cursor: pointer;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            color: #94a3b8;
            font-size: 0.75rem;
        }

        .legal-links {
            display: flex;
            gap: 1.5rem;
        }

        .legal-links a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.75rem;
            transition: color 0.2s ease;
        }

        .legal-links a:hover {
            color: #3b82f6;
        }

        @media (max-width: 768px) {
            .footer-columns-container {
                flex-direction: column;
                gap: 2rem;
            }
            
            .footer-columns-container > div {
                width: 100%;
                flex: 1 1 100%;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 0.75rem;
                text-align: center;
            }
            
            .legal-links {
                flex-wrap: wrap;
                justify-content: center;
            }
        }


 
    /* Default styles - widget visible */
    .sidebar-widget.post-category-widget {
        display: block;
    }

    /* Mobile styles - hide widget when screen is smaller than 768px */
    @media (max-width: 767px) {
        .sidebar-widget.post-category-widget {
            display: none;
        }
        
        /* Optional: Add styles for when the widget is toggled open */
        .sidebar-widget.post-category-widget.active {
            display: block;
        }
    }
    
    





.form-message {
    margin-top: 10px;
    padding: 8px;
    border-radius: 4px;
    display: none;
}
.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
}
.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
}
.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2b6cb0;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: #1e4e8c;
    text-decoration: underline;
}

.read-more-btn .fa-arrow-right {
    font-size: 0.9em;
}
