  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
    
    body {
        font-family: 'Poppins', sans-serif;
        background: #ffffff;
        margin: 0;
        padding: 0;
    }
    
    .blog-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
    }
    
    .main-content {
        width: 75%;
        padding: 0;
    }
    
    .single-post {
        background: #fff;
        padding: 0;
    }
    
    .single-post h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 2.1em;
        font-weight: 700;
        color: #2c3e50;
        line-height: 1.5;
        text-align: left;
        margin-bottom: 15px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .subtitle {
        font-size: 1.1em;
        color: #7f8c8d;
        font-weight: 400;
        line-height: 1.5;
        margin-bottom: 30px;
        text-align: left;
        padding-left: 20px;
        border-left: 4px solid #3498db;
        font-style: italic;
    }
    
    .meta-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-bottom: 40px;
        padding: 20px 0;
        border-top: 1px solid #ecf0f1;
        border-bottom: 1px solid #ecf0f1;
    }
    
    .meta-info {
        display: flex;
        align-items: center;
        gap: 25px;
        flex-wrap: wrap;
    }
    
    .meta-item {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #7f8c8d;
        font-size: 0.95em;
        font-weight: 500;
    }
    
    .meta-item i {
        color: #3498db;
        font-size: 1.1em;
    }
    
    .reading-time {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.85em;
        font-weight: 600;
        display: none;
        align-items: center;
        gap: 6px;
    }
    
    .featured-image-container {
        margin: 40px 0;
        text-align: center;
    }
    
    .featured-image {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        transition: transform 0.3s ease;
    }
    
    .featured-image:hover {
        transform: translateY(-2px);
    }
    
    .content {
        line-height: 1.8;
        color: #2c3e50;
        font-size: 1.1em;
        text-align: left;
        font-weight: 400;
    }
    
    .content p {
        text-align: justify;
        margin-bottom: 25px;
    }
    
    .content h2, .content h3, .content h4 {
        color: #2c3e50;
        font-weight: 600;
        margin-top: 35px;
        margin-bottom: 20px;
    }
    
    .sharing-section {
        margin-top: 50px;
        padding: 30px 0;
        border-top: 2px solid #ecf0f1;
        text-align: center;
    }
    
    .sharing-title {
        font-size: 1.2em;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 20px;
    }
    
    .sharing-buttons {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .share-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        text-decoration: none;
        color: white;
        font-size: 1.2em;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .share-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
    
    .share-facebook {
        background: linear-gradient(135deg, #1877f2, #42a5f5);
    }
    
    .share-twitter {
        background: linear-gradient(135deg, #1da1f2, #0d8bf0);
    }
    
    .share-email {
        background: linear-gradient(135deg, #ea4335, #fbbc04);
    }
    
    .share-whatsapp {
        background: linear-gradient(135deg, #25d366, #128c7e);
    }
    
    .share-linkedin {
        background: linear-gradient(135deg, #0077b5, #005885);
    }
    
    .back-button {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 15px 25px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        text-decoration: none;
        border-radius: 25px;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        margin-top: 40px;
    }
    
    .back-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        color: white;
        text-decoration: none;
    }
    
    .related-posts-section {
        margin-top: 60px;
        padding-top: 40px;
        border-top: 2px solid #ecf0f1;
    }
    
    .related-posts-title {
        font-size: 2em;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 30px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .related-posts-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .related-post-card {
        background: #fff;
        border: 1px solid #e8ecef;
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s ease;
        text-decoration: none;
        color: inherit;
    }
    
    .related-post-card:hover {
        transform: translateY(-3px);
        border-color: #3498db;
        text-decoration: none;
        color: inherit;
    }
    
    .related-post-image {
        width: 100%;
        height: 150px;
        object-fit: cover;
        background: #f8f9fa;
    }
    
    .related-post-content {
        padding: 15px;
    }
    
    .related-post-title {
        font-size: 0.95em;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 8px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .related-post-excerpt {
        font-size: 0.85em;
        color: #7f8c8d;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 8px;
    }
    
    .related-post-date {
        font-size: 0.8em;
        color: #95a5a6;
        font-weight: 500;
    }
    
    .post-navigation {
        text-align: left;
        margin-top: 40px;
    }
    
    /* Mobile Responsiveness */
    @media (max-width: 768px) {
        .blog-container {
            margin: 10px;
            padding: 20px 10px;
        }
        
        .main-content {
            width: 100%;
        }
        
        .single-post {
            padding: 20px 5px;
        }
        
        .single-post h1 {
            font-size: 1.7em!important;
            line-height: 1.5;
        }
        
        .subtitle {
            font-size: 1em;
            padding-left: 15px;
        }
        
        .meta-container {
            flex-direction: column;
            gap: 15px;
            align-items: flex-start;
        }
        
        .meta-info {
            gap: 15px;
        }
        
        .content {
            font-size: 1.05em;
        }
        
        .sharing-buttons {
            gap: 12px;
        }
        
        .share-btn {
            width: 45px;
            height: 45px;
            font-size: 1.1em;
        }
        
        .related-posts-grid {
            grid-template-columns: repeat(1, 1fr);
            gap: 20px;
        }
        
        .related-posts-title {
            font-size: 1.6em;
        }
    }
    
    @media (max-width: 480px) {
        .single-post h1 {
            font-size: 1.8em;
        }
        
        .meta-item {
            font-size: 0.9em;
        }
        
        .content {
            font-size: 1em;
        }
    }
    
    @media (max-width: 768px){
  .single-post .content img{
    max-width:100%;
    height:auto;
    display:block;
    margin:15px auto;
  }
}
