@import url('https://fonts.googleapis.com/css2?family=Markazi+Text:wght@500&display=swap');
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            line-height: 1.7;
            color: #2c3e50;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }

        .blog-post {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            padding: 40px;
            margin: 20px 0;
            animation: fadeInUp 0.8s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .blog-header {
            text-align: center;
            margin-bottom: 40px;
            border-bottom: 3px solid #3498db;
            padding-bottom: 30px;
        }

        .blog-title {
            font-size: 2.5em;
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .blog-meta {
            color: #7f8c8d;
            font-size: 1.1em;
            font-style: italic;
        }

        .featured-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 15px;
            margin: 30px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }

        .featured-image:hover {
            transform: scale(1.02);
        }

        .blog-content {
            font-size: 1.1em;
            text-align: justify;
        }

        .blog-content p {
            margin-bottom: 20px;
        }

        .blog-content h2 h3 {
            color: #2980b9;
            font-size: 1.8em;
            margin: 35px 0 20px 0;
            padding-left: 15px;
            border-left: 5px solid #3498db;
        }

        .inline-image {
            width: 100%;
            max-width: 400px;
            height: 250px;
            object-fit: cover;
            border-radius: 10px;
            margin: 20px auto;
            display: block;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
        }

        .inline-image:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        .image-caption {
            text-align: center;
            font-style: italic;
            color: #7f8c8d;
            font-size: 0.9em;
            margin-bottom: 25px;
        }

        .quote-box {
            background: linear-gradient(135deg, #74b9ff, #0984e3);
            color: white;
            padding: 25px;
            border-radius: 15px;
            margin: 30px 0;
            font-style: italic;
            font-size: 1.2em;
            text-align: center;
            box-shadow: 0 10px 30px rgba(116, 185, 255, 0.3);
        }

        .author-bio {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 15px;
            margin-top: 40px;
            border-left: 5px solid #e74c3c;
        }

        .author-bio   {
            color: #e74c3c;
            margin-bottom: 10px;
        }

        .tags {
            margin-top: 30px;
            text-align: center;
        }

        .tag {
            display: inline-block;
            background: #3498db;
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            margin: 5px;
            font-size: 0.9em;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .tag:hover {
            background: #2980b9;
            transform: translateY(-2px);
        }

        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .floating-circle {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .circle1 { width: 80px; height: 80px; top: 20%; left: 10%; animation-delay: 0s; }
        .circle2 { width: 120px; height: 120px; top: 60%; right: 15%; animation-delay: 2s; }
        .circle3 { width: 60px; height: 60px; bottom: 20%; left: 20%; animation-delay: 4s; }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        @media (max-width: 768px) {
            .container { padding: 10px; }
            .blog-post { padding: 25px; }
            .blog-title { font-size: 2em; }
            .blog-content { font-size: 1em; }
        }
		.titro , h2 , h1 ,h3 {
		  font-family: "Zain", sans-serif !important;
  font-weight: 700;
  font-style: normal;
		}
		.matno , p {
		  font-family: "Markazi Text", serif !important;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal
		}
		
		.quote-box a {
		color: white;
		}
		
		a {
  text-decoration: none;
}