 :root {
            --primary-color: #2d1b3d;
            --secondary-color: #0aaac0;
            --accent-color: #00d1cd;
            --light-bg: #f1f7f8;
            --card-bg: #ffffff;
            --text-dark: #1a1a1a;
            --text-light: #666666;
            --border-color: #e8e8e8;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

   

        /* Main Container */
        .janani-blog-s1 {
            max-width: 100%;
            margin: 0 auto;
            padding: 40px 20px;
            min-height: 100vh;
            background: linear-gradient(135deg, var(--light-bg) 0%, #faf7f2 100%);
        }

        /* Header Section */
        .janani-blog-s2 {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeInDown 0.8s ease-out;
        }

        .janani-blog-s2 h1 {
            font-family: "Montserrat", sans-serif;
            font-size: clamp(2rem, 8vw, 3.5rem);
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 12px;
            letter-spacing: -1px;
        }

        .janani-blog-s2 p {
            font-size: clamp(0.95rem, 2vw, 1.1rem);
            color: var(--text-light);
            font-weight: 400;
            max-width: 500px;
            margin: 0 auto;
        }

        /* Blog Grid */
        .janani-blog-s3 {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        @media (max-width: 768px) {
            .janani-blog-s3 {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 24px;
            }
        }

        @media (max-width: 480px) {
            .janani-blog-s3 {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        /* Blog Card */
        .janani-blog-s4 {
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            height: 100%;
            animation: fadeInUp 0.6s ease-out;
        }

        .janani-blog-s4:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-8px);
        }

        /* Blog Image Container */
        .janani-blog-s5 {
            width: 100%;
            height: 200px;
            overflow: hidden;
            background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
            position: relative;
        }

        @media (max-width: 768px) {
            .janani-blog-s5 {
                height: 180px;
            }
        }

        @media (max-width: 480px) {
            .janani-blog-s5 {
                height: 160px;
            }
        }

        .janani-blog-s5 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .janani-blog-s4:hover .janani-blog-s5 img {
            transform: scale(1.08);
        }

        /* Blog Content */
        .janani-blog-s6 {
            padding: 24px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        @media (max-width: 480px) {
            .janani-blog-s6 {
                padding: 20px;
            }
        }

        /* Blog Meta */
        .janani-blog-s7 {
            display: flex;
            gap: 12px;
            margin-bottom: 12px;
            flex-wrap: wrap;
            align-items: center;
        }

        .janani-blog-s8 {
            font-size: 0.8rem;
            color: var(--secondary-color);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            background: rgba(193, 102, 107, 0.1);
            padding: 4px 10px;
            border-radius: 20px;
            font-family: "Montserrat", sans-serif;
        }

        .janani-blog-s9 {
            font-size: 0.8rem;
            color: var(--text-light);
            font-family: "Montserrat", sans-serif;
        }

        /* Blog Title */
        .janani-blog-s10 {
            font-family: "Montserrat", sans-serif;
            font-size: clamp(1.2rem, 3vw, 1.5rem);
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 12px;
            line-height: 1.3;
            flex-grow: 1;
        }

        /* Blog Description */
        .janani-blog-s11 {
            font-size: 0.95rem;
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 16px;
            flex-grow: 1;
        }

        /* Read More Link */
        .janani-blog-s12 {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--secondary-color);
            font-weight: 600;
            text-decoration: none;
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .janani-blog-s4:hover .janani-blog-s12 {
            gap: 12px;
            color: var(--secondary-color);
        }

        .janani-blog-s12 svg {
            width: 16px;
            height: 16px;
            transition: var(--transition);
        }

        /* Modal */
        .janani-blog-s13 {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1000;
            animation: fadeIn 0.3s ease-out;
            overflow-y: auto;
        }

        .janani-blog-s13.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Modal Content */
        .janani-blog-s14 {
            background: var(--card-bg);
            border-radius: 16px;
            max-width: 800px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: var(--shadow-lg);
            animation: slideUp 0.4s ease-out;
            position: relative;
            margin: auto;
        }

        @media (max-width: 768px) {
            .janani-blog-s14 {
                width: 95%;
                max-height: 95vh;
                border-radius: 12px;
            }
        }

        @media (max-width: 480px) {
            .janani-blog-s14 {
                width: 100%;
                max-height: 100vh;
                border-radius: 0;
                display: flex;
                flex-direction: column;
            }
        }

        /* Modal Close Button */
        .janani-blog-s15 {
            position: absolute;
            top: 24px;
            right: 24px;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            z-index: 10;
        }

        .janani-blog-s15:hover {
            background: rgba(0, 0, 0, 0.95);
            transform: rotate(90deg);
        }

        @media (max-width: 480px) {
            .janani-blog-s15 {
                top: 16px;
                right: 16px;
                width: 36px;
                height: 36px;
                font-size: 20px;
            }
        }

        /* Modal Image */
        .janani-blog-s16 {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        @media (max-width: 768px) {
            .janani-blog-s16 {
                height: 300px;
            }
        }

        @media (max-width: 480px) {
            .janani-blog-s16 {
                height: 250px;
            }
        }

        /* Modal Body */
        .janani-blog-s17 {
            padding: 40px;
        }

        @media (max-width: 768px) {
            .janani-blog-s17 {
                padding: 30px;
            }
        }

        @media (max-width: 480px) {
            .janani-blog-s17 {
                padding: 24px;
            }
        }

        /* Modal Meta */
        .janani-blog-s18 {
            display: flex;
            gap: 12px;
            margin-bottom: 16px;
            flex-wrap: wrap;
            align-items: center;
        }

        /* Modal Title */
        .janani-blog-s19 {
            font-family: "Montserrat", sans-serif;
            font-size: clamp(1.8rem, 6vw, 2.5rem);
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 16px;
            line-height: 1.2;
        }

        /* Modal Description */
        .janani-blog-s20 {
            font-size: 1rem;
            color: var(--text-light);
            margin-bottom: 24px;
            font-style: italic;
        }

        /* Modal Content Text */
        .janani-blog-s21 {
            font-size: 1rem;
            color: var(--text-dark);
            line-height: 1.8;
            margin-bottom: 24px;
        }

        .janani-blog-s21 p {
            margin-bottom: 16px;
        }

        .janani-blog-s21 strong {
            color: var(--primary-color);
            font-weight: 600;
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

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

        /* Scrollbar styling */
        .janani-blog-s14::-webkit-scrollbar {
            width: 8px;
        }

        .janani-blog-s14::-webkit-scrollbar-track {
            background: var(--light-bg);
        }

        .janani-blog-s14::-webkit-scrollbar-thumb {
            background: var(--secondary-color);
            border-radius: 4px;
        }

        .janani-blog-s14::-webkit-scrollbar-thumb:hover {
            background: var(--primary-color);
        }

        /* Utility classes */
        .janani-blog-hidden {
            display: none !important;
        }