    :root {
            --primary-green: #3382f6;
            --light-green: #3382f6;
            --dark-green: #3382f6;
            --primary-yellow: #FFC107;
            --light-yellow: #FFD54F;
            --primary-orange: #FF9800;
            --light-orange: #FFB74D;
            --white: #ffffff;
            --light-gray: #f5f5f5;
            --dark-gray: #333;
            --text-color: #444;
            --border-color: #e0e0e0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--light-gray);
            color: var(--text-color);
            line-height: 1.6;
        }
        
        /* Header */
        .header_con {
            background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
            color: white;
            padding: 40px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        
        .header_con h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        
        .header_con p {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .back-to-news {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: white;
            text-decoration: none;
            margin-top: 20px;
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            transition: all 0.3s;
        }
        
        .back-to-news:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateX(-5px);
        }
        
        /* News Grid */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .news-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
        }
        
        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        }
        
        .news-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .news-card:hover .news-image img {
            transform: scale(1.05);
        }
        
        .news-category {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--primary-orange);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .news-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .news-date {
            color: var(--primary-green);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .news-title {
            font-size: 1.3rem;
            color: var(--dark-green);
            margin-bottom: 15px;
            line-height: 1.4;
            transition: color 0.3s;
            text-decoration: none;
            display: block;
        }
        
        .news-title:hover {
            color: var(--primary-orange);
        }
        
        .news-excerpt {
            color: var(--text-color);
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .news-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid var(--border-color);
        }
        
        .news-author {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #666;
        }
        
        .read-more {
            color: var(--primary-green);
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s;
        }
        
        .read-more:hover {
            color: var(--primary-orange);
            gap: 10px;
        }
        
        /* Single News Article */
        .single-news {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            margin-bottom: 40px;
        }
        
        .single-news-image {
            height: 600px;
            overflow: hidden;
            position: relative;
        }
        
        .single-news-image img,
        .single-news-image video {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .single-news-content {
            padding: 40px;
        }
        
        .single-news-header {
            margin-bottom: 30px;
            border-bottom: 2px solid var(--light-gray);
            padding-bottom: 20px;
        }
        
        .single-news-title {
            font-size: 2.2rem;
            color: var(--dark-green);
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        .single-news-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            color: #666;
            font-size: 0.95rem;
        }
        
        .single-news-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .news-body {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 40px;
        }
        
        .news-body p {
            margin-bottom: 20px;
        }
        
        .news-body img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 20px 0;
        }
        
        /* Share Buttons */
        .share-section {
            background: var(--light-gray);
            padding: 25px;
            border-radius: 10px;
            margin-top: 40px;
        }
        
        .share-title {
            font-size: 1.1rem;
            color: var(--dark-green);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .share-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .share-btn {
            padding: 10px 10px;
            border-radius: 8px;
            text-decoration: none;
            color: white;
            font-weight: 600;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .share-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .facebook { background: #1877F2; }
        .twitter { background: #1DA1F2; }
        .linkedin { background: #0077B5; }
        .whatsapp { background: #25D366; }
        .copy-link { background: var(--primary-orange); }
        .email { background: var(--primary-green); }
        
        .copy-link.success {
            background: var(--primary-green);
        }
        
        .copy-link .check {
            display: none;
        }
        
        .copy-link.success .link-icon {
            display: none;
        }
        
        .copy-link.success .check {
            display: inline;
        }
        
        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 60px 20px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            margin: 40px 0;
        }
        
        .empty-state i {
            font-size: 4rem;
            color: #ddd;
            margin-bottom: 20px;
        }
        
        .empty-state h3 {
            color: var(--dark-green);
            margin-bottom: 10px;
            font-size: 1.5rem;
        }
        
        .empty-state p {
            color: #666;
            max-width: 500px;
            margin: 0 auto 30px;
        }
        
        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 40px 0;
        }
        
        .page-link {
            padding: 10px 18px;
            background: white;
            border: 2px solid var(--border-color);
            color: var(--dark-green);
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .page-link:hover {
            background: var(--light-green);
            color: white;
            border-color: var(--light-green);
        }
        
        .page-link.active {
            background: var(--primary-green);
            color: white;
            border-color: var(--primary-green);
        }
        
        /* Recent News Sidebar (for single article) */
        .recent-news-sidebar {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
        }
        
        .sidebar-title {
            font-size: 1.2rem;
            color: var(--dark-green);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light-gray);
        }
        
        .recent-news-list {
            list-style: none;
        }
        
        .recent-news-item {
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
        }
        
        .recent-news-item:last-child {
            border-bottom: none;
        }
        
        .recent-news-title {
            color: var(--dark-green);
            text-decoration: none;
            font-weight: 600;
            display: block;
            margin-bottom: 5px;
            transition: color 0.3s;
        }
        
        .recent-news-title:hover {
            color: var(--primary-orange);
        }
        
        .recent-news-date {
            color: #666;
            font-size: 0.85rem;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .news-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
            
            .single-news-image {
                height: 300px;
            }
            
            .single-news-title {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .header_con {
                padding: 30px 0;
            }
            
            .header_con h1 {
                font-size: 2rem;
            }
            
            .news-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .single-news-image {
                height: 250px;
            }
            
            .single-news-content {
                padding: 25px;
            }
            
            .single-news-title {
                font-size: 1.6rem;
            }
            
            .single-news-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .share-buttons {
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
           
            
            .header_con h1 {
                font-size: 1.8rem;
            }
            
            .news-content {
                padding: 20px;
            }
            
            .news-title {
                font-size: 1.2rem;
            }
            
            .share-btn {
                padding: 8px 15px;
                font-size: 0.85rem;
            }
            
            .single-news-image {
                height: 400px;
            }
        }
        
        /* Notification Toast */
        .toast {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--primary-green);
            color: white;
            padding: 15px 25px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transform: translateY(100px);
            opacity: 0;
            transition: all 0.3s;
            z-index: 1000;
        }
        
        .toast.show {
            transform: translateY(0);
            opacity: 1;
        }
        
        /* Loading Animation */
        .loading {
            text-align: center;
            padding: 40px;
            color: #666;
        }
        
        .loading-spinner {
            border: 4px solid #f3f3f3;
            border-top: 4px solid var(--primary-green);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }