    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
    @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');
        :root {
            --primary: #d4941a;
            --primary-dark: #121212;
            --dark: #160101;
            --text: #f5f5f5;
            --text-light: #666666;
            --bg-light: #d4941a;
            --white: #ffffff;
            --shadow: 0 2px 10px rgba(0,0,0,0.1);
            --border-radius: 12px;
            --mobile-padding: 1rem;
            --mobile-font-size: 14px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            line-height: 1.8;
            color: var(--white);
            background-color: var(--dark);
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .article-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background: var(--dark);
            box-shadow: var(--shadow);
            top: 0;
            z-index: 100;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            position: relative;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            z-index: 1001;
        }
        
        /* Mobile Navigation */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
            background: none;
            border: none;
        }
        
        .mobile-toggle span {
            width: 25px;
            height: 3px;
            background: var(--primary);
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }
        
        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }
        
        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            transition: color 0.3s;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
        }
        
        .nav-links a:hover {
            color: var(--primary);
            background: rgba(212, 148, 26, 0.1);
        }
        
        .nav-links .btn {
            background: var(--primary);
            color: var(--white);
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .nav-links .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }
        
        /* Breadcrumb */
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.875rem;
            color: var(--white);
        }
        
        .breadcrumb a {
            color: var(--text-light);
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        /* Article Header */
        .article-header {
            text-align: center;
            padding: 3rem 0;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        
        .article-title {
            font-size: clamp(1.8rem, 5vw, 3rem);
            color: var(--white);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            margin-left: 1rem;
            margin-right: 1rem;
            margin-top: 1rem;
            text-align: center;
        }
        
        .article-meta {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            font-size: 0.875rem;
            color: var(--text-light);
            margin-bottom: 2rem;
        }
        
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            white-space: nowrap;
        }
        
        .article-meta i {
            color: var(--primary);
        }
        
        /* Featured Image */
        .featured-image {
            width: 100%;
            height: clamp(250px, 50vw, 400px);
            background: #d4941a;
            overflow: hidden;
            border-radius: var(--border-radius);
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 2rem;
            color: var(--white);
            font-size: clamp(1.2rem, 4vw, 2rem);
            font-weight: 600;
            text-align: center;
            position: relative;
        }
        
        .featured-image::before {
            
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0,0,0,0.7);
            padding: 1rem 1.5rem;
            border-radius: var(--border-radius);
        }
        
        /* Article Content */
        .article-content {
            background: var(--dark);
            padding: clamp(1.5rem, 4vw, 3rem);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 3rem;
        }
        
        .article-content h2 {
            font-size: clamp(1.4rem, 4vw, 1.75rem);
            color: var(--white);
            margin: 2rem 0 1rem;
            padding-top: 1rem;
            scroll-margin-top: 80px;
        }
        
        .article-content h3 {
            font-size: clamp(1.2rem, 3.5vw, 1.375rem);
            color: var(--white);
            margin: 1.5rem 0 0.75rem;
            scroll-margin-top: 80px;
        }
        
        .article-content p {
            margin-bottom: 1.5rem;
            color: var(--text);
            font-size: clamp(0.9rem, 2.5vw, 1rem);
        }
        
        .article-content ul,
        .article-content ol {
            margin: 0 0 1.5rem 1rem;
            padding-left: 1rem;
        }
        
        .article-content li {
            margin-bottom: 0.75rem;
            font-size: clamp(0.9rem, 2.5vw, 1rem);
        }
        
        .article-content strong {
            color: var(--white);
            font-weight: 600;
        }
        
        .article-content a {
            color: var(--primary);
            text-decoration: underline;
            word-break: break-word;
        }
        
        .article-content a:hover {
            color: var(--primary-dark);
        }
        
        /* Table of Contents */
        .toc {
            background: var(--bg-light);
            border-left: 4px solid var(--primary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            text-align: center;
        }
        
        .toc h3 {
            font-size: clamp(1.1rem, 3vw, 1.25rem);
            margin-bottom: 1rem;
        }
        
        .toc ol {
            margin-left: 1rem;
            text-align: left;
        }
        
        .toc li {
            margin-bottom: 0.75rem;
            font-size: clamp(0.85rem, 2.3vw, 0.95rem);
        }
        
        .toc a {
            color: var(--text);
            text-decoration: none;
            display: block;
            padding: 0.5rem;
            border-radius: 8px;
            transition: all 0.3s;
        }
        
        .toc a:hover {
            background: rgba(255,255,255,0.1);
            color: var(--primary);
        }
        
        /* Call to Action Box */
        .cta-box {
            background: #d4941a;
            color: var(--white);
            padding: 2rem;
            border-radius: var(--border-radius);
            text-align: center;
            margin: 2rem 0;
        }
        
        .cta-box h3 {
            font-size: clamp(1.2rem, 3.5vw, 1.5rem);
            margin-bottom: 1rem;
        }
        
        .cta-box p {
            margin-bottom: 1.5rem;
            opacity: 0.95;
            font-size: clamp(0.9rem, 2.5vw, 1rem);
        }
        
        .cta-button {
            display: inline-block;
            background: var(--white);
            color: var(--primary);
            padding: 0.75rem 2rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            font-size: clamp(0.9rem, 2.3vw, 1rem);
            min-height: 44px;
            line-height: 1.2;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        
        /* Tags */
        .article-tags {
            margin: 3rem 0;
            padding-top: 2rem;
            border-top: 1px solid #eee;
        }
        
        .article-tags h3 {
            font-size: clamp(1rem, 3vw, 1.125rem);
            margin-bottom: 1rem;
        }
        
        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        
        .tag {
            background: var(--bg-light);
            color: var(--text);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            text-decoration: none;
            font-size: clamp(0.75rem, 2vw, 0.875rem);
            transition: all 0.3s;
            min-height: 36px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .tag:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-1px);
        }
        
        /* Share Section */
        .share-section {
            background: var(--dark);
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .share-title {
            font-size: clamp(1.1rem, 3vw, 1.25rem);
            margin-bottom: 1rem;
        }
        
        .share-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .share-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            min-width: 48px;
            min-height: 48px;
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 1.2rem;
        }
        
        .share-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }
        
        .share-facebook { background: #1877f2; }
        .share-twitter { background: #1da1f2; }
        .share-whatsapp { background: #25d366; }
        .share-pinterest { background: #bd081c; }
        
        /* Author Box */
        .author-box {
            background: var(--dark);
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            display: flex;
            gap: 1.5rem;
            align-items: center;
            margin-bottom: 3rem;
        }
        
        .thumbnail-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            flex-shrink: 0;
        }
        
        .author-info h3 {
            font-size: clamp(1.1rem, 3vw, 1.25rem);
            margin-bottom: 0.5rem;
        }
        
        .author-info p {
            color: var(--text);
            margin-bottom: 1rem;
            font-size: clamp(0.85rem, 2.3vw, 0.95rem);
        }
        
        .author-social {
            display: flex;
            gap: 1rem;
        }
        
        .author-social a {
            color: var(--primary);
            font-size: 1.25rem;
            transition: color 0.3s;
            padding: 0.5rem;
            min-width: 40px;
            min-height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .author-social a:hover {
            color: var(--white);
        }
        
        /* Related Posts */
        .related-posts {
            margin-bottom: 3rem;
        }
        
        .related-posts h2 {
            font-size: clamp(1.5rem, 4vw, 2rem);
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        
        .related-card {
            background: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s;
        }
        
        .related-card:hover {
            transform: translateY(-5px);
        }
        
        .related-image {
            height: 150px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 600;
            font-size: clamp(0.9rem, 2.5vw, 1rem);
            text-align: center;
            padding: 1rem;
        }
        
        .related-content {
            padding: 1.5rem;
        }
        
        .related-title {
            font-size: clamp(1rem, 3vw, 1.125rem);
            margin-bottom: 0.5rem;
        }
        
        .related-title a {
            color: var(--dark);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .related-title a:hover {
            color: var(--primary);
        }
        
        .related-content p {
            color: var(--text-light);
            font-size: clamp(0.85rem, 2.3vw, 0.9rem);
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: var(--white);
            padding: 3rem 0 1rem;
            text-align: center;
        }
        
        footer p {
            font-size: clamp(0.85rem, 2.3vw, 0.95rem);
            margin-bottom: 0.5rem;
        }
        
        /* Performance optimizations */
        img {
            max-width: 100%;
            height: auto;
            loading: lazy;
        }
        
        /* Focus indicators for accessibility */
        *:focus {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }
        
        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }
        
        /* Mobile Responsive Breakpoints */
        @media (max-width: 768px) {
            body {
                font-size: var(--mobile-font-size);
                background-color: var(--dark);
            }
            
            .container,
            .article-container {
                padding: 0 var(--mobile-padding);
            }
            
            /* Mobile Navigation */
            .mobile-toggle {
                display: flex;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100vh;
                background: var(--dark);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2rem;
                transition: left 0.3s ease;
                z-index: 1000;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                width: 100%;
                text-align: center;
            }
            
            .nav-links a {
                display: block;
                padding: 1rem 2rem;
                font-size: 1.2rem;
                width: 100%;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .nav-links .btn {
                margin: 1rem;
                border: none;
                border-radius: 25px;
                width: auto;
                display: inline-block;
            }
            
            /* Mobile Article Adjustments */
            .article-header {
                padding: 2rem 0;
            }
            
            .article-meta {
                gap: 0.75rem;
                font-size: 0.8rem;
            }
            
            .article-meta span {
                flex-direction: column;
                text-align: center;
                gap: 0.25rem;
            }
            
            .featured-image {
                height: 200px;
                margin-top: 1rem;
            }
            
            .featured-image::before {
                padding: 0.75rem 1rem;
                font-size: 1rem;
            }
            
            /* Mobile Content Adjustments */
            .article-content {
                padding: 1.5rem;
                margin-bottom: 2rem;
            }
            
            .toc {
                padding: 1rem;
                margin: 1.5rem 0;
            }
            
            .toc ol {
                margin-left: 0.5rem;
            }
            
            .cta-box {
                padding: 1.5rem;
                margin: 1.5rem 0;
            }
            
            .cta-button {
                padding: 0.75rem 1.5rem;
                font-size: 0.9rem;
            }
            
            /* Mobile Share Buttons */
            .share-buttons {
                gap: 0.75rem;
            }
            
            .share-button {
                width: 44px;
                height: 44px;
                min-width: 44px;
                min-height: 44px;
            }
            
            /* Mobile Author Box */
            .author-box {
                flex-direction: column;
                text-align: center;
                padding: 1.5rem;
                gap: 1rem;
            }
            
            .thumbnail-image {
                width: 100px;
                height: 100px;
            }
            
            /* Mobile Related Posts */
            .related-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .related-image {
                height: 120px;
            }
            
            .related-content {
                padding: 1rem;
            }
        }
        
        /* Extra Small Mobile Devices */
        @media (max-width: 480px) {
            .article-title {
                font-size: 1.5rem;
                line-height: 1.3;
            }
            
            .article-content h2 {
                font-size: 1.3rem;
            }
            
            .article-content h3 {
                font-size: 1.1rem;
            }
            
            .featured-image {
                height: 160px;
            }
            
            .toc a {
                padding: 0.4rem;
                font-size: 0.8rem;
            }
            
            .share-buttons {
                gap: 0.5rem;
            }
            
            .share-button {
                width: 40px;
                height: 40px;
                min-width: 40px;
                min-height: 40px;
                font-size: 1rem;
            }
        }
        
        /* Landscape Mobile */
        @media (max-width: 768px) and (orientation: landscape) {
            .featured-image {
                height: 150px;
            }
            
            .article-header {
                padding: 1.5rem 0;
            }
        }
        
        /* Reduce motion for users who prefer it */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            
            html {
                scroll-behavior: auto;
            }
            
            .nav-links {
                transition: none;
            }
        }
        
        /* High contrast mode support */
        @media (prefers-contrast: high) {
            .toc {
                border: 2px solid var(--white);
            }
            
            .cta-button {
                border: 2px solid var(--primary);
            }
        }
   
        
        /* Hero Section */
        .hero {
            background: #e0aa3e;
            color: var(--white);
            padding: 4rem 0;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .hero p {
            font-size: 1.125rem;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Blog Grid */
        .blog-section {
            padding: 4rem 0;
        }
        
        .blog-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .blog-header h2 {
            font-size: 2rem;
            color: var(--dark);
            margin-bottom: 1rem;
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        /* Blog Card */
        .blog-card {
            background: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }
        
        .blog-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
            background: 
                linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%),
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.25rem;
            font-weight: 600;
            text-align: center;
            padding: 20px;
        }
      
        .image-overlay {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
         height: 100%;
         background-color: rgba(0, 0, 0, 0.4); /* adjust darkness */
         z-index: 1;
        }
        
		
        .blog-content {
            padding: 1.5rem;
        }
        
        .blog-meta {
            display: flex;
            gap: 1.5rem;
            font-size: 0.875rem;
            color: var(--text-light);
            margin-bottom: 1rem;
        }
        
        .blog-meta i {
            color: var(--primary);
            margin-right: 0.25rem;
        }
        
        .blog-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 1rem;
            line-height: 1.4;
        }
        
        .blog-title a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .blog-title a:hover {
            color: var(--primary);
        }
        
        .blog-excerpt {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }
        
		
        .read-more {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            transition: gap 0.3s;
        }
        
        .read-more:hover {
            gap: 1rem;
        }
        
        /* Categories Widget */
        .blog-sidebar {
            margin-top: 2rem;
        }
        
        .widget {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        
        .widget h3 {
            font-size: 1.25rem;
            color: var(--dark);
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--primary);
        }
        
        .category-list {
            list-style: none;
        }
        
        .category-list li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
        }
        
        .category-list a {
            color: var(--dark);
            text-decoration: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.3s;
        }
        
        .category-list a:hover {
            color: var(--primary);
        }
        
        .category-count {
            background: var(--bg-light);
            padding: 0.25rem 0.5rem;
            border-radius: 20px;
            font-size: 0.875rem;
        }
        
        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 3rem;
        }
        
        .pagination a,
        .pagination span {
            padding: 0.5rem 1rem;
            border: 1px solid var(--primary);
            border-radius: 5px;
            text-decoration: none;
            color: var(--primary);
            transition: all 0.3s;
        }
        
        .pagination a:hover,
        .pagination .current {
            background: var(--primary);
            color: var(--white);
        }
        
		
        
        .footer-content {
            text-align: center;
        }
        
        .footer-content p {
            margin-bottom: 1rem;
            opacity: 0.8;
        }
        
	
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: var(--white);
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        
        /* Mobile Styles */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .blog-grid {
                grid-template-columns: 1fr;
            }
            
            .blog-layout {
                grid-template-columns: 1fr;
            }
        }
        
        /* Two column layout for larger screens */
        @media (min-width: 992px) {
            .blog-layout {
                display: grid;
                grid-template-columns: 2fr 1fr;
                gap: 3rem;
            }
        }