
        :root {
            --gold: #85754e;
            --light-grey: #f1f1f1;
            --medium-grey: #d1d1d1;
            --dark-grey: #666666;
            --dark-bg: #121212;
            --light-bg: var(--light-grey);
            --dark-text: #333333;
            --light-text: #f5f5f5;
        }

     

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: var(--accent1);
            color: #111;
            transition: all 0.3s ease;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            line-height: 1.6;
        }


        /* Breadcrumb */
        .breadcrumb {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 20px;
            
            
        }

        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            color: #1b1b1b !important;
        }

        .breadcrumb li {
            display: flex;
            align-items: center;
            color: #1b1b1b !important;
        }

        .breadcrumb a {
            
            text-decoration: none;
            transition: color 0.3s;
            color: #1b1b1b !important;
            font-weight: 400;
        }

        .breadcrumb a:hover {
            color: var(--gold);
        }

        .breadcrumb .separator {
            margin: 0 10px;
            color: var(--dark-grey);
        }

        /* Blog Post Container */
        .blog-container {
            max-width: 1200px;
            margin: 0 auto 60px;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 40px;
            background-color: var(--accent1);
        }

        /* Main Content */
        .main-content {
            background-color: var(--card-bg);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        /* Banner Image */
        .post-banner {
            width: 100%;
            height: 400px;
            overflow: hidden;
            position: relative;
        }

        .post-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Post Header */
        .post-header {
            padding: 30px;
            border-bottom: 1px solid var(--border-color);
        }

        .post-title {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--text-color);
        }

        .post-meta {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
            color:#1b1b1b !important;
            font-size: 0.95rem;
        }


        
        .post-meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .post-meta-item i {
            color: var(--primary);
            font-weight: 400 !important;
            font-size: 20px;
        }

        .post-meta-item span {
           
            font-weight: 300 !important;
            color: #1b1b1b;
        }

        .post-author {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 20px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info {
            display: flex;
            flex-direction: column;
        }

        .author-name {
            font-weight: 400;
            color: #1b1b1b;
        }

        .author-title {
            font-size: 1.2rem;
            color: #1b1b1b;
            font-weight: 300;
        }

        .post-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }

        .post-tag {
            background-color: var(--light-grey);
            color: var(--dark-grey);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            text-decoration: none;
            transition: background-color 0.3s, color 0.3s;
        }

        .post-tag:hover {
            background-color: var(--gold);
            color: white;
        }

        /* Post Content */
        .post-content {
            padding: 30px;
        }

        .post-content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .post-content h2 {
            font-size: 1.8rem;
            margin: 30px 0 20px;
            color: var(--text-color);
        }

        .post-content h3 {
            font-size: 1.5rem;
            margin: 25px 0 15px;
            color: var(--text-color);
        }

        .post-content ul, .post-content ol {
            margin-bottom: 20px;
            padding-left: 30px;
        }

        .post-content li {
            margin-bottom: 10px;
        }

        .post-content blockquote {
            border-left: 4px solid var(--gold);
            padding: 15px 20px;
            margin: 20px 0;
            background-color: var(--light-grey);
            font-style: italic;
        }

        /* Video Section */
        .video-section {
            margin: 30px 0;
        }

        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            border-radius: 10px;
        }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Image Gallery */
        .image-gallery {
            margin: 30px 0;
        }

        .gallery-title {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--text-color);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 15px;
        }

        .gallery-item {
            height: 150px;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Social Sharing */
        .social-sharing {
            margin: 30px 0;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
        }

        .sharing-title {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--text-color);
        }

        .sharing-buttons {
            display: flex;
            gap: 15px;
        }

        .sharing-button {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: transform 0.3s, background-color 0.3s;
        }

        .sharing-button:hover {
            transform: translateY(-3px);
        }

        .facebook {
            background-color: #3b5998;
        }

        .twitter {
            background-color: #1da1f2;
        }

        .linkedin {
            background-color: #0077b5;
        }

        .pinterest {
            background-color: #bd081c;
        }

        .whatsapp {
            background-color: #25d366;
        }

        /* Comments Section */
        .comments-section {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
        }

        .comments-title {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--text-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .comments-title i {
            color: var(--gold);
        }

        .comments-count {
            color: var(--dark-grey);
            font-size: 1rem;
            font-weight: normal;
            margin-left: 10px;
        }

        .comment-form {
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: var(--text-color);
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--input-border);
            border-radius: 5px;
            background-color: var(--input-bg);
            color: var(--text-color);
            font-size: 1rem;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--input-focus);
            box-shadow: 0 0 0 2px rgba(133, 117, 78, 0.2);
        }

        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }

        .form-row {
            display: flex;
            gap: 20px;
        }

        .form-col {
            flex: 1;
        }

        .btn {
            padding: 12px 25px;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.3s;
        }

        .btn-primary {
            background-color: var(--gold);
            color: white;
        }

        .btn-primary:hover {
            background-color: #6a5d3e;
            transform: translateY(-2px);
        }

        .comments-list {
            margin-top: 30px;
        }

        .comment {
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid var(--border-color);
        }

        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .comment-author {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .comment-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            overflow: hidden;
        }

        .comment-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .comment-name {
            font-weight: bold;
            color: var(--text-color);
        }

        .comment-date {
            font-size: 0.85rem;
            color: var(--dark-grey);
        }

        .comment-content {
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .comment-actions {
            display: flex;
            gap: 15px;
        }

        .comment-action {
            font-size: 0.9rem;
            color: var(--dark-grey);
            cursor: pointer;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .comment-action:hover {
            color: var(--gold);
        }

        .comment-replies {
            margin-top: 20px;
            margin-left: 50px;
            padding-left: 20px;
            border-left: 2px solid var(--border-color);
        }

        .reply {
            margin-bottom: 20px;
        }

        .reply:last-child {
            margin-bottom: 0;
        }

        .reply-form {
            margin-top: 20px;
            margin-left: 50px;
            padding-left: 20px;
            border-left: 2px solid var(--border-color);
            display: none;
        }

        .reply-form.active {
            display: block;
        }

        /* Sidebar */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .sidebar-widget {
            background-color: var(--accent3);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 25px;
        }

        .widget-title {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--text-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .widget-title i {
            color: var(--gold);
        }

        /* Author Widget */
        .author-widget {
            text-align: center;
        }

        .author-widget-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 15px;
            border: 3px solid var(--gold);
        }

        .author-widget-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-widget-name {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 5px;
            color: var(--text-color);
        }

        .author-widget-title {
            font-size: 0.9rem;
            color: var(--dark-grey);
            margin-bottom: 15px;
        }

        .author-widget-bio {
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .author-social {
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .author-social-link {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background-color: var(--light-grey);
            color: var(--dark-grey);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s, color 0.3s;
        }

        .author-social-link:hover {
            background-color: var(--gold);
            color: white;
        }

        /* Popular Posts Widget */
        .popular-posts-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .popular-post {
            display: flex;
            gap: 15px;
        }

        .popular-post-image {
            width: 80px;
            height: 80px;
            border-radius: 5px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .popular-post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .popular-post-info {
            display: flex;
            flex-direction: column;
        }

        .popular-post-title {
            font-weight: bold;
            margin-bottom: 5px;
            color: #1b1b1b;
            text-decoration: none;
            transition: color 0.3s;
        }

        .popular-post-title:hover {
            color: var(--gold);
        }

        .popular-post-date {
            font-size: 0.85rem;
            color: var(--dark-grey);
        }

        /* Tags Widget */
        .tags-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag-link {
            background-color: var(--light-grey);
            color: #1b1b1b;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            text-decoration: none;
            transition: background-color 0.3s, color 0.3s;
            font-weight: 300 !important;
        }

        .tag-link:hover {
            background-color: var(--gold);
            color: white;
        }

        /* Related Posts */
        .related-posts {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid var(--border-color);
        }

        .related-posts-title {
            font-size: 1.8rem;
            margin-bottom: 30px;
            color: var(--text-color);
            text-align: center;
        }

        .posts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .post-card {
            background-color: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            text-decoration: none;
            color: var(--text-color);
            display: block;
        }

        .post-card:hover {
            transform: translateY(-10px);
        }

        .post-card-image {
            height: 200px;
            overflow: hidden;
        }

        .post-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .post-card:hover .post-card-image img {
            transform: scale(1.1);
        }

        .post-card-content {
            padding: 20px;
        }

        .post-card-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--text-color);
        }

        .post-card-excerpt {
            font-size: 0.95rem;
            margin-bottom: 15px;
            color: var(--dark-grey);
            line-height: 1.6;
        }

        .post-card-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.85rem;
            color: var(--dark-grey);
        }

        /* Image Modal */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }

        .modal-image {
            max-width: 100%;
            max-height: 90vh;
            border-radius: 5px;
        }

        .modal-close {
            position: absolute;
            top: -40px;
            right: 0;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
        }

        .modal-caption {
            position: absolute;
            bottom: -40px;
            left: 0;
            width: 100%;
            text-align: center;
            color: white;
            font-size: 1rem;
        }

        .modal-prev,
        .modal-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            padding: 10px;
            z-index: 2001;
        }

        .modal-prev {
            left: -60px;
        }

        .modal-next {
            right: -60px;
        }


        /* Responsive Styles */
        @media (max-width: 992px) {
            .blog-container {
                grid-template-columns: 1fr ;
            }

            .sidebar {
                order: 1;
            }

            .modal-prev {
                left: 10px;
            }

            .modal-next {
                right: 10px;
            }
        }

        @media (max-width: 768px) {

            .post-title {
                font-size: 2rem;
            }

            .post-banner {
                height: 300px;
            }

            .post-header, 
            .post-content {
                padding: 20px;
            }

            .form-row {
                flex-direction: column;
                gap: 0;
            }

            .comment-replies {
                margin-left: 20px;
                padding-left: 15px;
            }

            .reply-form {
                margin-left: 20px;
                padding-left: 15px;
            }
        }

        @media (max-width: 480px) {
            .post-title {
                font-size: 1.8rem;
            }

            .post-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .post-banner {
                height: 200px;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .sharing-buttons {
                flex-wrap: wrap;
            }
        }
    