
        :root {
            --primary-color: #c9d45a;
            --secondary-color: #2a6b5d;
            --accent-color: #e36b6b;
            --dark-color: #23272a;
            --light-color: #f8f9fa;
            --gray-color: #6c757d;
            --light-bg: #f1f3f5;
            
            --heading-font: "Merriweather", Georgia, serif;
            --body-font: "Montserrat", Arial, sans-serif;
            
            --container-width: 1200px;
            --border-radius: 12px;
            --transition: all 0.3s ease;
            --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
                 ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 10px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--secondary-color);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        

        body {
            font-family: var(--body-font);
            line-height: 1.6;
            color: var(--dark-color);
            background-color: var(--light-bg);
            overflow-x: hidden;
            width: 100%;
        }

        h1, h2, h3, h4, h5 {
            font-family: var(--heading-font);
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        ul {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .section {
            padding: 5rem 0;
        }

        .btn {
            display: inline-block;
            padding: 0.9rem 1.8rem;
            border-radius: 50px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: 1rem;
        }

        .btn-primary {
            background-color: var(--primary-color);
           color: var(--dark-color);
        }

        .btn-primary:hover {
            background-color: #1f5247;
            transform: translateY(-3px);
            box-shadow: var(--box-shadow);
            color: #ffffff;
        }

        .btn-secondary {
            background-color: var(--primary-color);
            color: var(--dark-color);
        }

        .btn-secondary:hover {
            background-color: #1f5247;
            transform: translateY(-3px);
            box-shadow: var(--box-shadow);
            color: #ffffff;
        }

        .btn-outline {
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            background: transparent;

        }

        .btn-outline:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--box-shadow);
        }

        .text-center {
            text-align: center;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 2.5rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: var(--secondary-color);
        }

        /* Header Styles */
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
            transition: var(--transition);
        }

        .main-header.scrolled {
            padding: 0.7rem 0;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo a {
            font-family: var(--heading-font);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .nav-menu {
            display: flex;
            align-items: center;
        }

        .nav-list {
            display: flex;
            margin-right: 2rem;
        }

        .nav-item {
            margin: 0 1rem;
        }

        .nav-link {
            font-weight: 500;
            color: var(--dark-color);
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: var(--transition);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .header-cta .btn {
            margin-left: 1rem;
        }

        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary-color);
        }
        
        .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile menu open state for body */
body.menu-open {
    overflow: hidden;
}

/* Mobile toggle icon */
.mobile-toggle i {
    font-size: 2rem;
    transition: transform 0.3s ease;
}

        /* Blog Hero Section */
        .blog-hero {
            background: linear-gradient(135deg, var(--secondary-color) 0%, #b9c44c 100%);
            color: white;
            padding: 10rem 0 5rem;
            text-align: center;
        }

        .blog-hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .blog-hero-title {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .blog-hero-text {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }

        /* Blog Content Section */
        .blog-content-section {
            padding: 5rem 0;
            background-color: white;
        }

        .blog-container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 4rem;
        }

        /* Blog Posts */
        .blog-posts {
            display: flex;
            flex-direction: column;
            gap: 3rem;
        }

        .blog-post {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }

        .blog-post:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .blog-post-image {
            height: 300px;
            overflow: hidden;
        }

        .blog-post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-post:hover .blog-post-image img {
            transform: scale(1.05);
        }

        .blog-post-content {
            padding: 2.5rem;
        }

        .blog-post-meta {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            color: var(--gray-color);
        }

        .blog-post-date {
            display: flex;
            align-items: center;
            margin-right: 1.5rem;
        }

        .blog-post-date i,
        .blog-post-category i {
            margin-right: 0.5rem;
        }

        .blog-post-category {
            display: flex;
            align-items: center;
        }

        .blog-post-title {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .blog-post-excerpt {
            color: var(--gray-color);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .blog-post-link {
            color: var(--secondary-color);
            font-weight: 500;
            display: inline-flex;
            align-items: center;
        }

        .blog-post-link i {
            margin-left: 0.5rem;
            transition: var(--transition);
        }

        .blog-post-link:hover i {
            transform: translateX(5px);
        }

        .blog-pagination {
            display: flex;
            justify-content: center;
            margin-top: 3rem;
            gap: 1rem;
        }

        .pagination-link {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--light-bg);
            color: var(--dark-color);
            font-weight: 500;
            transition: var(--transition);
        }

        .pagination-link.active,
        .pagination-link:hover {
            background: var(--secondary-color);
            color: white;
        }

        /* Sidebar */
        .blog-sidebar {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }

        .sidebar-widget {
            background: var(--light-bg);
            border-radius: var(--border-radius);
            padding: 2rem;
        }

        .widget-title {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .widget-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--secondary-color);
        }

        /* Search Widget */
        .search-form {
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 1rem 1.5rem;
            border: 1px solid #ddd;
            border-radius: 50px;
            font-family: var(--body-font);
            font-size: 1rem;
            transition: var(--transition);
        }

        .search-input:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(42, 107, 93, 0.1);
        }

        .search-button {
            position: absolute;
            right: 5px;
            top: 5px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--secondary-color);
            color: white;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .search-button:hover {
            background: var(--primary-color);
        }

        /* Categories Widget */
        .categories-list {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .category-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .category-item:last-child {
            border-bottom: none;
        }

        .category-link {
            color: var(--dark-color);
            transition: var(--transition);
        }

        .category-link:hover {
            color: var(--secondary-color);
        }

        .category-count {
            background: var(--secondary-color);
            color: white;
            padding: 0.2rem 0.6rem;
            border-radius: 20px;
            font-size: 0.8rem;
        }

        /* Recent Posts Widget */
        .recent-posts {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .recent-post {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .recent-post-image {
            width: 80px;
            height: 80px;
            border-radius: var(--border-radius);
            overflow: hidden;
        }

        .recent-post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .recent-post-content {
            flex: 1;
        }

        .recent-post-title {
            font-size: 1rem;
            margin-bottom: 0.5rem;
            line-height: 1.4;
        }

        .recent-post-date {
            font-size: 0.8rem;
            color: var(--gray-color);
        }

        /* Tags Widget */
        .tags-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
        }

        .tag {
            padding: 0.5rem 1rem;
            background: white;
            border-radius: 30px;
            font-size: 0.9rem;
            color: var(--dark-color);
            transition: var(--transition);
        }

        .tag:hover {
            background: var(--secondary-color);
            color: white;
        }

        /* Newsletter Widget */
        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .newsletter-input {
            padding: 1rem;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-family: var(--body-font);
            font-size: 1rem;
            transition: var(--transition);
        }

        .newsletter-input:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(42, 107, 93, 0.1);
        }

        .newsletter-button {
            background: var(--secondary-color);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: var(--border-radius);
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
        }

        .newsletter-button:hover {
            background: var(--primary-color);
        }

        /* Footer */
        .main-footer {
            background: white;
            color: white;
            padding: 100px 0 2rem;
            margin-top: -50px;
            position: relative;
            z-index: 1;
        }

        .main-footer .container{
            width: 100%;
            height: 100%;
            max-width: 100%;
            max-height: 100%;
            border-top-right-radius: 400px;
            background-color: var(--secondary-color);
            margin-top: -50px;
            margin-bottom: -50px;
            padding-top: 50px;
            padding-bottom: 20px;
            padding-left: 80px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }

        .footer-about h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: white;
        }

        .footer-about p {
            opacity: 0.7;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-bottom: 20px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .social-link:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }

        .footer-links h4 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: white;
        }

        .footer-links ul li {
            margin-bottom: 0.8rem;
        }

        .footer-links ul li a {
            opacity: 0.7;
            transition: var(--transition);
        }

        .footer-links ul li a:hover {
            opacity: 1;
            color: var(--primary-color);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .copyright {
            opacity: 0.7;
        }

        .legal-links {
            display: flex;
            gap: 1.5rem;
        }

        .legal-links a {
            opacity: 0.7;
            transition: var(--transition);
        }

        .legal-links a:hover {
            opacity: 1;
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .blog-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .blog-sidebar {
                order: -1;
            }
        }
        @media (min-width: 768px) {
            .mobilnav{
                display: none;
            }
        }

        @media (max-width: 768px) {
            
                        .footer-about .social-link{
                margin-top: 2.5rem;
            }
            
            .footer-about h3{
                display: none;
            }
            
            .section {
                padding: 4rem 0;
            }
            
            .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        z-index: 999;
        padding: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }
    .mobile-toggle{
        z-index: 999;
    }
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        margin-top: 2rem;
    }
    
    .nav-item {
        margin: 1rem 0;
    }
    
    .header-cta {
       display: none;
    }
            
            .mobile-toggle {
                display: block;
            }
            
            .blog-hero-title {
                font-size: 2.5rem;
            }
            
            .blog-post-title {
                font-size: 1.5rem;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
            
            .legal-links {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .blog-hero-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .blog-post-content {
                padding: 1.5rem;
            }
            
            .blog-post-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
            
            .recent-post {
                flex-direction: column;
            }
            
            .recent-post-image {
                width: 100%;
                height: 150px;
            }
            
            .main-footer .container {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }
        }

        @media (max-width: 619px) {
            .footer-about p{
                display: none;
            }

            .footer-bottom{
                margin-left: auto;
            }
        }
        
        /* Hidden class for filtered items */
        .hidden {
            display: none;
        }
