.blog-hero {
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1499750310107-5fef28a66643?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            padding: 150px 5% 100px;
            color: white;
            text-align: center;
        }
        
        .blog-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: white;
        }
        
        .blog-hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        .blog-section {
            padding: 80px 5%;
            background-color: var(--white);
        }
        
        .blog-section:nth-child(even) {
            background-color: var(--light-gray);
        }
        
        .blog-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .blog-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .blog-header h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .blog-header h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            border-radius: 2px;
        }
        
        .blog-header p {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Blog Grid */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .blog-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .blog-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .blog-card:hover .blog-image img {
            transform: scale(1.1);
        }
        
        .blog-category {
            position: absolute;
            top: 15px;
            left: 15px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
        }
        
        .blog-content {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .blog-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            font-size: 0.9rem;
            color: #888;
        }
        
        .blog-meta i {
            color: var(--primary);
            margin-right: 5px;
        }
        
        .blog-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        
        .blog-title a {
            color: var(--text);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .blog-title a:hover {
            color: var(--primary);
        }
        
        .blog-excerpt {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
            flex: 1;
        }
        
        .blog-read-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            transition: gap 0.3s ease;
            margin-top: auto;
        }
        
        .blog-read-more:hover {
            gap: 12px;
            color: var(--dark-green);
        }
        
        /* Featured Post */
        .featured-post {
            display: flex;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            margin-bottom: 60px;
        }
        
        .featured-image {
            flex: 1;
            min-height: 300px;
            overflow: hidden;
        }
        
        .featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .featured-post:hover .featured-image img {
            transform: scale(1.05);
        }
        
        .featured-content {
            flex: 1;
            padding: 40px;
            display: flex;
            flex-direction: column;
        }
        
        .featured-label {
            background: linear-gradient(135deg, var(--accent), var(--accent-red));
            color: white;
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 20px;
            width: fit-content;
        }
        
        .featured-content h3 {
            font-size: 2rem;
            margin-bottom: 15px;
        }
        
        .featured-content h3 a {
            color: var(--text);
            text-decoration: none;
        }
        
        .featured-content h3 a:hover {
            color: var(--primary);
        }
        
        .featured-meta {
            margin-bottom: 20px;
            color: #888;
        }
        
        .featured-meta i {
            color: var(--primary);
            margin-right: 5px;
        }
        
        .featured-excerpt {
            color: #666;
            line-height: 1.8;
            margin-bottom: 25px;
        }
        
        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 50px;
        }
        
        .page-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: white;
            color: var(--text);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .page-link:hover,
        .page-link.active {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
        }
        
        .page-link.next {
            width: auto;
            padding: 0 20px;
            border-radius: 30px;
        }
        
        /* Categories Sidebar */
        .blog-wrapper {
            display: flex;
            gap: 40px;
        }
        
        .blog-main {
            flex: 2.5;
        }
        
        .blog-sidebar {
            flex: 1;
        }
        
        .sidebar-widget {
            background: white;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        
        .sidebar-widget h3 {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .sidebar-widget h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            border-radius: 2px;
        }
        
        .category-list {
            list-style: none;
        }
        
        .category-list li {
            margin-bottom: 12px;
            border-bottom: 1px solid #eee;
            padding-bottom: 8px;
        }
        
        .category-list li:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .category-list a {
            display: flex;
            justify-content: space-between;
            color: #666;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .category-list a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        
        .category-list span {
            background: var(--light-gray);
            padding: 2px 8px;
            border-radius: 20px;
            font-size: 0.8rem;
        }
        
        .recent-posts {
            list-style: none;
        }
        
        .recent-posts li {
            margin-bottom: 15px;
            display: flex;
            gap: 15px;
        }
        
        .recent-post-image {
            width: 70px;
            height: 70px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .recent-post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .recent-post-content h4 {
            font-size: 1rem;
            margin-bottom: 5px;
        }
        
        .recent-post-content h4 a {
            color: var(--text);
            text-decoration: none;
        }
        
        .recent-post-content h4 a:hover {
            color: var(--primary);
        }
        
        .recent-post-date {
            font-size: 0.8rem;
            color: #999;
        }
        
        .recent-post-date i {
            color: var(--primary);
            margin-right: 3px;
        }
        
        .tags-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .tag {
            background: var(--light-gray);
            color: #666;
            padding: 5px 15px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .tag:hover {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
        }
        
        /* Newsletter Widget */
        .newsletter-widget {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
        }
        
        .newsletter-widget h3 {
            color: white;
        }
        
        .newsletter-widget h3:after {
            background: white;
        }
        
        .newsletter-widget p {
            margin-bottom: 20px;
            opacity: 0.9;
        }
        
        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .newsletter-form input {
            padding: 12px 15px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
        }
        
        .newsletter-form button {
            background: var(--accent);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background: var(--accent-red);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .blog-wrapper {
                flex-direction: column;
            }
            
            .featured-post {
                flex-direction: column;
            }
            
            .blog-hero h1 {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .blog-hero h1 {
                font-size: 2.2rem;
            }
            
            .blog-grid {
                grid-template-columns: 1fr;
            }
            
            .blog-header h2 {
                font-size: 2rem;
            }
            
            .featured-content {
                padding: 25px;
            }
            
            .featured-content h3 {
                font-size: 1.6rem;
            }
        }

/* Blog Post Specific Styles */

/* Override any fixed positioning from main styles.css */
        .blog-post-header {
            position: relative !important;
            top: auto !important;
            left: auto !important;
            right: auto !important;
            bottom: auto !important;
            z-index: auto !important;
            width: 100% !important;
            transform: none !important;
            margin-bottom: 30px !important;
            padding: 0 !important;
            background: transparent !important;
            box-shadow: none !important;
        }
        
        .blog-post-title {
            position: relative !important;
            font-size: 3.2rem;
            line-height: 1.2;
            color: #333;
            margin-bottom: 20px !important;
            font-weight: 700;
        }
        
        .blog-post-meta {
            position: relative !important;
            display: flex !important;
            align-items: center;
            flex-wrap: wrap;
            gap: 25px;
            color: #666;
            font-size: 0.95rem;
            padding: 15px 0 !important;
            border-top: 1px solid #eee !important;
            border-bottom: 1px solid #eee !important;
            width: 100% !important;
            background: transparent !important;
        }
        
        .blog-post-author {
            display: flex !important;
            align-items: center;
            gap: 10px;
        }
        
        .author-avatar {
            width: 40px !important;
            height: 40px !important;
            border-radius: 50% !important;
            border: 2px solid #78C841 !important;
        }
        
        .author-name {
            font-weight: 600 !important;
            color: #333 !important;
        }
        
        .blog-post-date,
        .blog-post-read-time {
            display: flex !important;
            align-items: center;
            gap: 5px;
        }
        
        .blog-post-date i,
        .blog-post-read-time i {
            color: #78C841 !important;
        }
        
        /* Ensure the article container doesn't inherit fixed positioning */
        .blog-post-article {
            position: relative !important;
        }
        
        /* Blog post main styles */
        .blog-post-main {
            padding: 120px 5% 80px;
            background-color: #f9f9f9;
        }
        
        .blog-post-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(0, 2.5fr) 1fr;
            gap: 40px;
        }
        
        .blog-post-article {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        
        /* Breadcrumb */
        .blog-breadcrumb {
            margin-bottom: 20px;
            font-size: 0.9rem;
            color: #777;
        }
        
        .blog-breadcrumb a {
            color: #78C841;
            text-decoration: none;
        }
        
        .blog-breadcrumb i {
            font-size: 0.7rem;
            margin: 0 8px;
        }
        
        /* Featured Image */
        .blog-post-featured-image {
            margin-bottom: 30px;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .blog-post-featured-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Blog Content */
        .blog-post-content {
            color: #444;
            line-height: 1.8;
        }
        
        .blog-post-intro {
            font-size: 1.2rem;
            font-weight: 500;
            border-left: 4px solid #78C841;
            padding-left: 20px;
            margin-bottom: 25px;
        }
        
        .blog-post-content h2 {
            font-size: 2rem;
            color: #78C841;
            margin: 40px 0 20px;
        }
        
        .blog-post-content p {
            margin-bottom: 20px;
        }
        
        .blog-post-content a {
            color: #78C841;
        }
        
        .blog-list {
            margin-bottom: 25px;
            padding-left: 20px;
        }
        
        .blog-list li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }
        
        .blog-list li:before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #78C841;
        }
        
        .blog-quote {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 4px solid #78C841;
        }
        
        .blog-quote i {
            font-size: 2rem;
            color: #78C841;
            opacity: 0.3;
            margin-bottom: 15px;
        }
        
        .blog-quote p {
            font-size: 1.2rem;
            font-style: italic;
            margin: 0;
        }
        
        /* Emirates Grid */
        .emirates-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        
        .emirate-card {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            border: 1px solid #eee;
        }
        
        .emirate-card h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #78C841;
        }
        
        .emirate-card p {
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .emirate-link {
            color: #78C841;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        
        /* FAQ */
        .blog-faq {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 30px;
            margin: 40px 0;
        }
        
        .faq-item {
            background: white;
            border-radius: 8px;
            margin-bottom: 10px;
            border: 1px solid #eee;
        }
        
        .faq-question {
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }
        
        .faq-question h3 {
            margin: 0;
            font-size: 1.1rem;
        }
        
        .faq-question i {
            color: #78C841;
            transition: transform 0.3s;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s;
        }
        
        .faq-item.active .faq-answer {
            max-height: 200px;
            padding: 20px;
            border-top: 1px solid #eee;
        }
        
        /* Tags */
        .blog-post-tags {
            margin: 40px 0 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .tag-label {
            font-weight: 600;
        }
        
        .tag {
            background: #f0f0f0;
            color: #555;
            text-decoration: none;
            padding: 5px 12px;
            border-radius: 30px;
            font-size: 0.85rem;
        }
        
        /* Share */
        .blog-post-share {
            margin: 30px 0;
            padding: 20px 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .share-buttons {
            display: flex;
            gap: 10px;
        }
        
        .share-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: white;
            text-decoration: none;
        }
        
        .share-btn.facebook { background: #3b5998; }
        .share-btn.twitter { background: #1da1f2; }
        .share-btn.linkedin { background: #0077b5; }
        .share-btn.whatsapp { background: #25d366; }
        
        /* Author Bio */
        .blog-author-bio {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 30px;
            margin: 40px 0;
            display: flex;
            align-items: center;
            gap: 30px;
        }
        
        .author-bio-image {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            border: 3px solid #78C841;
        }
        
        .author-link {
            color: #78C841;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        
        /* Related Posts */
        .related-posts {
            margin-top: 50px;
        }
        
        .related-posts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .related-post {
            background: #f8f9fa;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .related-post-image {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }
        
        .related-post-content {
            padding: 15px;
        }
        
        .related-post-content h3 a {
            color: #333;
            text-decoration: none;
        }
        
        .related-post-date {
            font-size: 0.8rem;
            color: #999;
        }
        
        /* Sidebar */
        .blog-sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .sidebar-widget {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        
        .widget-title {
            font-size: 1.3rem;
            color: #78C841;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #78C841;
        }
        
        .recent-posts-list {
            list-style: none;
        }
        
        .recent-posts-list li {
            margin-bottom: 12px;
        }
        
        .recent-post-link {
            color: #666;
            text-decoration: none;
        }
        
        .recent-post-link.active {
            color: #78C841;
            font-weight: 600;
        }
        
        .category-list {
            list-style: none;
        }
        
        .category-list li {
            margin-bottom: 10px;
        }
        
        .category-list a {
            display: flex;
            justify-content: space-between;
            color: #666;
            text-decoration: none;
        }
        
        .services-list {
            list-style: none;
        }
        
        .services-list li {
            margin-bottom: 10px;
        }
        
        .services-list a {
            color: #666;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .services-list i {
            color: #78C841;
        }
        
        .cta-widget {
            background: linear-gradient(135deg, #78C841, #B4E50D);
            color: white;
        }
        
        .cta-widget .widget-title {
            color: white;
            border-bottom-color: white;
        }
        
        .cta-button {
            display: inline-block;
            background: white;
            color: #78C841;
            padding: 10px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .blog-post-container {
                grid-template-columns: 1fr;
            }
            
            .blog-post-title {
                font-size: 2.5rem !important;
            }
        }
        
        @media (max-width: 768px) {
            .blog-post-main {
                padding: 100px 5% 60px;
            }
            
            .blog-post-title {
                font-size: 2rem !important;
            }
            
            .blog-post-meta {
                flex-direction: column !important;
                align-items: flex-start !important;
                gap: 15px !important;
            }
            
            .blog-author-bio {
                flex-direction: column;
                text-align: center;
            }
        }