        .new-bl-blog-section {
            background: linear-gradient(125deg, #050B41 0%, #0A1259 70%, #0D1875 100%);
            position: relative;
            overflow: hidden;
            padding: 4rem 0;
        }

        /* Modern geometric background patterns */
        .new-bl-blog-section::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background:
                radial-gradient(circle at 20% 20%, rgba(74, 144, 226, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(126, 87, 194, 0.1) 0%, transparent 50%);
            opacity: 0.6;
        }

        /* Animated background effect */
        @keyframes gradientAnimation {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        .new-bl-blog-container {
            position: relative;
            z-index: 1;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .new-bl-blog-header {
            text-align: center;
            margin-bottom: 5rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
        }

        .new-bl-blog-header::after {
            content: '';
            position: absolute;
            bottom: -2rem;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #4A90E2, #7E57C2);
            border-radius: 2px;
        }

        .new-bl-blog-header h2 {
            color: white;
            font-size: 3.2rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            letter-spacing: -0.02em;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .new-bl-blog-header p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.25rem;
            line-height: 1.8;
            font-weight: 300;
        }

        .new-bl-blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            /* 3 equal columns */
            gap: 2.5rem;
            margin: 0 auto;
        }

        .new-bl-blog-card {
            background: rgba(255, 255, 255, 0.99);
            border-radius: 24px;
            overflow: hidden;
            transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            display: flex;
            flex-direction: column;
            height: 100%;
            text-decoration: none;
            position: relative;
        }

        .new-bl-blog-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .new-bl-blog-image-wrapper {
            position: relative;
            width: 100%;
            padding-top: 56.25%;
            overflow: hidden;
            background: linear-gradient(45deg, #f6f6f6, #fcfcfc);
        }

        .new-bl-blog-image-wrapper img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: fill;
        }

        .new-bl-blog-content {
            padding: 2rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            position: relative;
        }

        .new-bl-blog-date {
            display: inline-flex;
            align-items: center;
            background: #E3F2FD;
            color: #1976D2;
            padding: 0.5rem 1rem;
            border-radius: 100px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1.25rem;
            letter-spacing: 0.02em;
            box-shadow: 0 2px 8px rgba(25, 118, 210, 0.1);
        }

        .new-bl-blog-date::before {
            content: '';
            display: inline-block;
            width: 6px;
            height: 6px;
            background: currentColor;
            border-radius: 50%;
            margin-right: 8px;
        }

        .new-bl-blog-title {
            color: #1A237E;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 2.8em;
        }

        .new-bl-blog-excerpt {
            color: #546E7A;
            margin-bottom: 2rem;
            line-height: 1.8;
            font-size: 0.8rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex-grow: 1;
        }

        .new-bl-read-more {
            display: inline-flex;
            align-items: center;
            color: #1976D2;
            font-weight: 600;
            margin-top: auto;
            padding-top: 1rem;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .new-bl-read-more:hover {
            color: #1565C0;
        }

        .new-bl-read-more svg {
            width: 20px;
            height: 20px;
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .new-bl-read-more:hover svg {
            transform: translateX(4px);
        }

        /* Category tag style */
        .new-bl-blog-category {
            position: absolute;
            top: -12px;
            right: 20px;
            background: #7FB800;
            color: white;
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            box-shadow: 0 2px 8px rgba(25, 118, 210, 0.2);
        }

        @media (max-width: 1200px) {
            .new-bl-blog-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
                gap: 2rem;
            }

            .new-bl-blog-header h2 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .new-bl-blog-section {
                padding: 5rem 0;
            }

            .new-bl-blog-header h2 {
                font-size: 2.2rem;
            }

            .new-bl-blog-header p {
                font-size: 1.1rem;
            }

            .new-bl-blog-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 0 1rem;
            }

            .new-bl-blog-title {
                font-size: 1.3rem;
            }
        }

        /* Add premium loading effect */
        .new-bl-blog-card-skeleton {
            position: relative;
            overflow: hidden;
        }

        .new-bl-blog-card-skeleton::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                    transparent 0%,
                    rgba(255, 255, 255, 0.2) 50%,
                    transparent 100%);
            animation: shimmer 1.5s infinite;
        }

        @keyframes shimmer {
            0% {
                transform: translateX(-100%);
            }

            100% {
                transform: translateX(100%);
            }
        }
