  /* Hero Banner */
        .hero {
            background: linear-gradient(rgba(26, 75, 140, 0.8), rgba(26, 75, 140, 0.8)), 
                        url('http://sarkarijobfinder.rf.gd/wp-content/uploads/2025/09/herobanner.avif');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        
        .hero h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        /* Main Content Layout */
        .content-wrapper {
            display: flex;
            gap: 30px;
            margin: 40px 0;
        }
        
        .main-content {
            flex: 1;
        }
        
        .sidebar {
            width: 350px;
            flex-shrink: 0;
        }
        
        /* Blog Posts */
        .blog-posts {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .blog-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            margin-bottom: 20px;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .blog-image {
            height: 200px;
            overflow: hidden;
        }
        
        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .blog-card:hover .blog-image img {
            transform: scale(1.05);
        }
        
        .blog-content {
            padding: 20px;
        }
        
        .blog-meta {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: var(--gray);
        }
        
        .blog-meta span {
            display: flex;
            align-items: center;
            margin-right: 15px;
        }
        
        .blog-meta i {
            margin-right: 5px;
            color: var(--secondary);
        }
        
        .blog-title {
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        .blog-excerpt {
            color: #555;
            margin-bottom: 20px;
        }
        
        .blog-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }
        
        .blog-tag {
            background-color: var(--light-gray);
            color: var(--dark);
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
        }
        
        .blog-tag:hover {
            background-color: var(--secondary);
            color: white;
        }
        
        .read-more {
            display: inline-block;
            padding: 8px 20px;
            background-color: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 500;
            transition: background-color 0.3s;
        }
        
        .read-more:hover {
            background-color: #0d3a6e;
        }
        
        /* Sidebar Styles */
        .sidebar-widget {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            padding: 25px;
            margin-bottom: 30px;
        }
        
        .widget-title {
            position: relative;
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 20px;
            padding-bottom: 10px;
        }
        
        .widget-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background-color: var(--secondary);
        }
        
        /* About Widget */
        .about-widget img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            border: 5px solid var(--light);
        }
        
        .about-widget p {
            color: #555;
            margin-bottom: 15px;
        }
        
        .social-profiles {
            display: flex;
            gap: 10px;
        }
        
        .social-profiles a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background-color: var(--light);
            color: var(--primary);
            border-radius: 50%;
            transition: all 0.3s;
        }
        
        .social-profiles a:hover {
            background-color: var(--primary);
            color: white;
        }
        
        /* Categories Widget */
        .categories-list {
            list-style: none;
        }
        
        .categories-list li {
            padding: 10px 0;
            border-bottom: 1px solid var(--light-gray);
        }
        
        .categories-list li:last-child {
            border-bottom: none;
        }
        
        .categories-list a {
            display: flex;
            justify-content: space-between;
            color: #555;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .categories-list a:hover {
            color: var(--primary);
        }
        
        .categories-list span {
            background-color: var(--light);
            color: var(--primary);
            padding: 2px 8px;
            border-radius: 20px;
            font-size: 0.8rem;
        }
        
        /* Popular Posts Widget */
        .popular-post {
            display: flex;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--light-gray);
        }
        
        .popular-post:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .popular-post-image {
            width: 80px;
            height: 80px;
            border-radius: 4px;
            overflow: hidden;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .popular-post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .popular-post-content h4 {
            font-size: 0.95rem;
            margin-bottom: 5px;
            line-height: 1.4;
        }
        
        .popular-post-content h4 a {
            color: var(--dark);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .popular-post-content h4 a:hover {
            color: var(--primary);
        }
        
        .popular-post-date {
            font-size: 0.8rem;
            color: var(--gray);
            display: flex;
            align-items: center;
        }
        
        .popular-post-date i {
            margin-right: 5px;
            color: var(--secondary);
        }
        
        /* Tags Widget */
        .tags-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .tag {
            background-color: var(--light);
            color: var(--dark);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .tag:hover {
            background-color: var(--primary);
            color: white;
        }
        
        /* Newsletter Widget */
        .newsletter-widget p {
            color: #555;
            margin-bottom: 15px;
        }
        
        .newsletter-form input {
            width: 100%;
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            margin-bottom: 10px;
            font-size: 1rem;
        }
        
        .newsletter-form button {
            width: 100%;
            padding: 10px;
            background-color: var(--secondary);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 500;
            transition: background-color 0.3s;
        }
        
        .newsletter-form button:hover {
            background-color: #e69500;
        }
        
        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            margin: 40px 0;
        }
        
        .pagination-list {
            display: flex;
            list-style: none;
        }
        
        .pagination-item {
            margin: 0 5px;
        }
        
        .pagination-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            color: var(--dark);
            background-color: white;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .pagination-link:hover, .pagination-link.active {
            background-color: var(--primary);
            color: white;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: var(--secondary);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }
        
        .social-links a {
            color: white;
            font-size: 1.2rem;
        }
        
        .newsletter input {
            width: 100%;
            padding: 10px;
            margin-bottom: 10px;
            border: none;
            border-radius: 4px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h2 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .sidebar {
                width: 300px;
            }
        }
         @media (max-width: 768px) {
         
            .hero {
                padding: 40px 0;
            }
            
            .hero h2 {
                font-size: 1.8rem;
            }
            
            .content-wrapper {
                flex-direction: column;
            }
            
            .sidebar {
                width: 100%;
            }
            
           
        }