
      
        /* ========================================
           MAIN CONTENT AREA
        ======================================== */
        .main-content {
            padding: 60px 0;
        }
        body{
            overflow-x: hidden;
        }
        
        /* ========================================
           BLOG POST DETAIL
        ======================================== */
        .blog-detail-container {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 25px rgba(0,0,0,0.08);
            overflow: hidden;
            margin-bottom: 40px;
            animation: fadeInUp 0.8s ease;
        }
        
        /* Blog Header */
        .blog-header {
            padding: 40px;
            border-bottom: 1px solid #f0f0f0;
        }
        .sidebar-widget {
            background: #fff;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 10px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        
        .sidebar-widget:hover {
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        }
        
       .blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 900;
    color: #2d3436;
    margin-bottom: 20px;
    line-height: 1.3;
    animation: fadeInLeft 1s ease;
    text-align: center;
}
        
        .blog-meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 25px;
            color: #636e72;
            font-size: 15px;
            animation: fadeInRight 1s ease;
        }
        
        .blog-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .blog-meta-item i {
            color: #f68626;
            font-size: 16px;
        }
        
        .author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid #f68626;
        }
        
        .author-name {
            color: #2d3436;
            font-weight: 600;
        }
        
        /* Featured Image */
        .featured-image {
            width: 100%;
            max-height: 600px;
            overflow: hidden;
            position: relative;
            animation: zoomIn 1s ease;
            background: #f5f5f5;
        }

        .featured-image img {
            width: 100%;
            height: auto;
            max-height: 600px;
            object-fit: fill;
            transition: transform 0.5s ease;
        }
        
        .featured-image:hover img {
            transform: scale(1.05);
        }
        
        /* Blog Content */
        .blog-content {
            padding: 50px 40px;
            font-family: 'Merriweather', serif;
            font-size: 18px;
            line-height: 1.9;
            color: #2d3436;
        }
        
        .blog-content p {
            margin-bottom: 25px;
            text-align: justify;
        }
        
        .blog-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 700;
            color: #2d3436;
            margin-top: 40px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #f68626;
        }
        
        .blog-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 26px;
            font-weight: 700;
            color: #2d3436;
            margin-top: 35px;
            margin-bottom: 15px;
        }
        
        .blog-content blockquote {
            background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
            border-left: 5px solid #f68626;
            padding: 25px 30px;
            margin: 35px 0;
            font-style: italic;
            font-size: 20px;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        
        .blog-content blockquote p {
            margin-bottom: 0;
        }
        
        .blog-content ul, .blog-content ol {
            margin-bottom: 25px;
            padding-left: 30px;
        }
        
        .blog-content li {
            margin-bottom: 12px;
        }
        
        .content-image {
            width: 100%;
            border-radius: 8px;
            margin: 35px 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        
     
        
        
        
     
        /* ========================================
           ANIMATIONS
        ======================================== */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        /* ========================================
           RESPONSIVE STYLES
        ======================================== */
        @media (max-width: 991px) {
             .custom-container  .position-absolute{position: unset !important;}
            .blog-title {
                font-size: 36px;
            }
            
            .blog-content {
                padding: 40px 30px;
                font-size: 17px;
            }
            
            .blog-content h2 {
                font-size: 28px;
            }
            
            .featured-image {
                max-height: 400px;
            }

            .featured-image img {
                max-height: 400px;
            }
            
            .sidebar {
                margin-top: 40px;
            }
        }
        
        @media (max-width: 767px) {
            .blog-title {
                font-size: 28px;
            }
            
            .blog-header {
                padding: 30px 20px;
            }
            
            .blog-content {
                padding: 30px 20px;
                font-size: 16px;
            }
            
            .blog-content h2 {
                font-size: 24px;
            }
            
            .blog-content h3 {
                font-size: 20px;
            }
            
            .blog-footer {
                padding: 25px 20px;
            }
            
            .featured-image {
                max-height: 300px;
            }

            .featured-image img {
                max-height: 300px;
            }
            
            .blog-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .post-navigation {
                flex-direction: column;
            }
            
            .nav-post-next {
                text-align: left;
            }
            
            .tag-category-section {
                flex-direction: column;
                gap: 25px;
            }
            
            .footer {
                text-align: center;
            }
            
            .footer-widget h4:after {
                left: 50%;
                transform: translateX(-50%);
            }
        }
        
        @media (max-width: 480px) {
            .blog-title {
                font-size: 24px;
            }
            
            .blog-content {
                font-size: 15px;
            }
            
            .social-icons {
                gap: 10px;
            }
            
            .social-icon {
                width: 45px;
                height: 45px;
                line-height: 45px;
                font-size: 18px;
            }
        }

