/* Blog Detail */
        .blog-detail {
            padding: 180px 0 80px;
        }

        .blog-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .blog-category {
            display: inline-block;
            background: rgba(200, 16, 46, 0.1);
            color: var(--secondary);
            padding: 6px 18px;
            border-radius: 30px;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1px;
        }

        .blog-title {
            font-size: 2.8rem;
            margin-bottom: 25px;
            color: var(--primary);
            line-height: 1.3;
        }

        .blog-meta {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .meta-item {
            display: flex;
            align-items: center;
            margin: 0 15px 10px;
        }

        .meta-item i {
            margin-right: 8px;
            color: var(--accent);
        }

        .featured-image {
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 50px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .blog-content {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            padding: 50px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .blog-content p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            color: #444;
        }

        .blog-content h2, 
        .blog-content h3 {
            margin-top: 45px;
            margin-bottom: 25px;
            color: var(--primary);
            position: relative;
            padding-bottom: 15px;
        }

        .blog-content h2 {
            font-size: 1.8rem;
        }

        .blog-content h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--accent);
            border-radius: 3px;
        }

        .blog-content h3 {
            font-size: 1.5rem;
        }

        .blog-content ul, 
        .blog-content ol {
            margin: 20px 0 30px 30px;
        }

        .blog-content li {
            margin-bottom: 12px;
            padding-left: 10px;
        }

        .blog-content li:before {
            content: '•';
            color: var(--accent);
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }

        .quote-block {
            border-left: 4px solid var(--accent);
            padding: 30px;
            background: #f8fafc;
            margin: 40px 0;
            border-radius: 0 15px 15px 0;
        }

        .quote-block p {
            font-size: 1.3rem;
            font-weight: 500;
            font-style: italic;
            color: var(--secondary);
            margin: 0;
        }

        .author-section {
            display: flex;
            align-items: center;
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid #eee;
        }

        .author-img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 2.5rem;
            margin-right: 25px;
            flex-shrink: 0;
        }

        .author-info h4 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .author-info p {
            margin: 0;
            color: var(--gray);
        }

        .social-share {
            display: flex;
            margin: 40px 0;
            align-items: center;
        }

        .social-share span {
            font-weight: 600;
            margin-right: 15px;
            color: var(--primary);
        }

        .social-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            color: white;
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .social-btn:hover {
            transform: translateY(-5px);
        }

        .fb { background: #3b5998; }
        .tw { background: #1da1f2; }
        .in { background: #0077b5; }
        .pin { background: #bd081c; }

        .comments-section {
            max-width: 800px;
            margin: 60px auto 0;
            background: white;
            padding: 50px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .section-title {
            font-size: 1.8rem;
            margin-bottom: 40px;
            color: var(--primary);
            position: relative;
            padding-bottom: 15px;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--accent);
            border-radius: 3px;
        }

        .comment {
            display: flex;
            margin-bottom: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid #eee;
        }

        .comment:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .comment-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.3rem;
            margin-right: 25px;
            flex-shrink: 0;
        }

        .comment-content {
            flex-grow: 1;
        }

        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            align-items: center;
        }

        .comment-author {
            font-weight: 600;
            color: var(--primary);
            font-size: 1.1rem;
        }

        .comment-date {
            color: var(--gray);
            font-size: 0.9rem;
        }

        .comment-text {
            color: #555;
            line-height: 1.7;
        }

        .reply-btn {
            color: var(--accent);
            font-weight: 600;
            background: none;
            border: none;
            padding: 0;
            margin-top: 15px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
        }

        .reply-btn i {
            margin-left: 8px;
            transition: transform 0.3s;
        }

        .reply-btn:hover i {
            transform: translateX(5px);
        }
        .reply-box{
            background: #551a8b3d;
            margin: 5px;
            border-radius: 10px;
            padding: 5px;
            padding-left: 10px;
        }

        .comment-form {
            margin-top: 60px;
        }

        .form-title {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: var(--primary);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-control {
            width: 100%;
            padding: 15px 20px;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-control:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(244, 162, 97, 0.2);
            outline: none;
        }

        textarea.form-control {
            min-height: 180px;
            resize: vertical;
        }

        .submit-btn {
            background: var(--accent);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(244, 162, 97, 0.3);
        }

        .submit-btn:hover {
            background: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(26, 58, 108, 0.3);
        }

        /* Related Posts */
        .related-posts {
            max-width: 1200px;
            margin: 80px auto 0;
            padding: 0 20px;
        }

        .post-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .post-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
        }

        .post-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .post-img {
            height: 200px;
            overflow: hidden;
        }

        .post-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .post-card:hover .post-img img {
            transform: scale(1.1);
        }

        .post-content {
            padding: 25px;
        }

        .post-category {
            color: var(--secondary);
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 10px;
            display: block;
        }

        .post-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--primary);
            line-height: 1.4;
        }

        .post-meta {
            display: flex;
            font-size: 0.9rem;
            color: var(--gray);
            margin-bottom: 15px;
        }

        .post-meta span {
            margin-right: 15px;
        }

        .post-meta i {
            margin-right: 5px;
            color: var(--accent);
        }

        .read-more {
            color: var(--accent);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: var(--transition);
        }

        .read-more i {
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .read-more:hover {
            color: var(--primary);
        }

        .read-more:hover i {
            transform: translateX(5px);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 30px;
            margin-top: 100px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h3 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: var(--accent);
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--accent);
        }

        .footer-col p {
            margin-bottom: 20px;
            opacity: 0.8;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }

        .footer-links a i {
            margin-right: 10px;
            color: var(--accent);
        }

        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        .mt-4{
            margin-top: 40px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: var(--transition);
            }
            
            .nav-links.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .blog-detail {
                padding: 150px 0 40px;
            }
            
            .blog-title {
                font-size: 2.2rem;
            }
            
            .blog-content {
                padding: 30px 20px;
            }
            
            .author-section {
                flex-direction: column;
                text-align: center;
            }
            
            .author-img {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .comments-section {
                padding: 30px 20px;
            }
            
            .comment {
                flex-direction: column;
            }
            
            .comment-avatar {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }