 /* ===== BLOG SINGLE PAGE SPECIFIC STYLES ===== */
        /* Article Hero Section */
        .article-hero {
            padding: 100px 0 60px;
            background: linear-gradient(135deg, #2667FF 0%, #FF4754 100%);
            position: relative;
            overflow: hidden;
            color: white;
        }

        .article-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='1440' height='720' viewBox='0 0 1440 720' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='0%25' y1='100%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='%232667FF' stop-opacity='0.1'/%3E%3Cstop offset='100%25' stop-color='%23FF4754' stop-opacity='0.1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23a)' d='M0 0h1440v720H0z'/%3E%3Cpath fill='%23FFF' fill-opacity='0.05' d='M0 0h1440v720H0z'/%3E%3Cpath fill='none' stroke='%23FFF' stroke-width='2' stroke-opacity='0.05' d='M0 0h1440v720H0z'/%3E%3C/svg%3E");
            background-size: cover;
            opacity: 0.7;
        }

        .article-hero-content {
            position: relative;
            z-index: 2;
        }

        .article-category {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .article-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: white;
            line-height: 1.3;
            margin-bottom: 20px;
        }

        .article-meta {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
            color: rgba(255,255,255,0.9);
        }

        .article-meta-item {
            display: flex;
            align-items: center;
            font-size: 0.95rem;
        }

        .article-meta-item i {
            margin-right: 8px;
            color: white;
        }

        /* Article Content Section */
        .article-content-section {
            padding: 60px 0;
            background-color: #f9fafc;
        }

        .article-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .article-featured-image {
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 40px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .article-featured-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .article-content {
            background: white;
            border-radius: 15px;
            padding: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .article-content h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 40px 0 20px;
            color: var(--secondary-color);
            line-height: 1.4;
        }

        .article-content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 30px 0 15px;
            color: var(--secondary-color);
            line-height: 1.4;
        }

        .article-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 25px;
            color: #555;
        }

        .article-content ul,
        .article-content ol {
            margin-bottom: 25px;
            padding-left: 25px;
        }

        .article-content li {
            margin-bottom: 10px;
            line-height: 1.7;
            color: #555;
        }

        .article-content blockquote {
            border-left: 4px solid var(--primary-color);
            padding: 20px;
            margin: 30px 0;
            background: rgba(38, 103, 255, 0.05);
            font-style: italic;
            color: var(--secondary-color);
        }

        .article-content img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .pro-tip {
            background: rgba(38, 103, 255, 0.1);
            border-left: 4px solid var(--primary-color);
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }

        .pro-tip strong {
            color: var(--primary-color);
            display: block;
            margin-bottom: 10px;
        }

        .warning {
            background: rgba(255, 71, 84, 0.1);
            border-left: 4px solid var(--secondary-color);
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }

        .warning strong {
            color: var(--secondary-color);
            display: block;
            margin-bottom: 10px;
        }

        .article-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid #eee;
        }

        .article-tag {
            display: inline-block;
            background: rgba(38, 103, 255, 0.1);
            color: var(--primary-color);
            padding: 6px 15px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .article-tag:hover {
            background: var(--primary-color);
            color: white;
        }

        /* Author Section */
        .author-section {
            margin-top: 60px;
            padding: 30px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
        }

        .author-image {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 25px;
            flex-shrink: 0;
        }

        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            font-size: 1.3rem;
            margin-bottom: 5px;
            color: var(--secondary-color);
        }

        .author-info p {
            color: #6c757d;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .author-social {
            display: flex;
            gap: 15px;
        }

        .author-social a {
            color: var(--dark-color);
            transition: all 0.3s ease;
        }

        .author-social a:hover {
            color: var(--primary-color);
        }

        /* Related Articles */
        .related-articles {
            margin-top: 60px;
        }

        .related-articles h3 {
            font-size: 1.8rem;
            margin-bottom: 30px;
            color: var(--secondary-color);
            text-align: center;
        }

        .related-post-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            margin-bottom: 30px;
        }

        .related-post-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .related-post-image {
            height: 180px;
            overflow: hidden;
        }

        .related-post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .related-post-card:hover .related-post-image img {
            transform: scale(1.05);
        }

        .related-post-content {
            padding: 25px;
        }

        .related-post-content h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--secondary-color);
			text-decoration:none;
        }
		.related-post-content h4 a{
            	text-decoration:none;
        }
		.related-post-content .read-more {
                text-decoration: none;
		}

        .related-post-meta {
            font-size: 0.85rem;
            color: #6c757d;
            margin-bottom: 15px;
        }

        .related-post-excerpt {
            color: #6c757d;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        /* Responsive Styles */
        @media (max-width: 1199.98px) {
            .article-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 991.98px) {
            .article-hero {
                padding: 80px 0 40px;
            }
            
            .article-title {
                font-size: 2.2rem;
            }
            
            .article-content {
                padding: 40px;
            }
            
            .author-section {
                flex-direction: column;
                text-align: center;
            }
            
            .author-image {
                margin-right: 0;
                margin-bottom: 20px;
            }
        }

        @media (max-width: 767.98px) {
            .article-title {
                font-size: 1.8rem;
            }
            
            .article-content h2 {
                font-size: 1.5rem;
            }
            
            .article-content h3 {
                font-size: 1.3rem;
            }
            
            .article-content {
                padding: 30px;
            }
        }

        @media (max-width: 575.98px) {
            .article-title {
                font-size: 1.6rem;
            }
            
            .article-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .article-content h2 {
                font-size: 1.3rem;
            }
            
            .article-content h3 {
                font-size: 1.1rem;
            }
            
            .article-content {
                padding: 25px;
            }
        }
/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    background: var(--secondary-color);
    color: white;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}