/* Blogs Page Styles */
        .blogs-page {
            background: #ffffff;
        }

        /* Featured Post Section */
        .blogs-featured-section {
            padding: 80px 0;
            background: #ffffff;
        }

        .blogs-featured-title {
            font-size: 42px;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 60px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out 0.2s forwards;
            font-family: "Plus Jakarta Sans", sans-serif;
            font-optical-sizing: auto;
            letter-spacing: -1px;
        }

        .blogs-featured-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .blogs-featured-image-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            opacity: 0;
            transform: translateX(-50px);
        }

        .blogs-featured-image-container.animate {
            opacity: 1;
            transform: translateX(0);
            transition: all 0.8s ease;
        }

        .blogs-featured-image-container:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .blogs-featured-image {
            width: 100%;
            height: 392px;
            background: #d1d5db;
            display: block;
            object-fit: cover;
        }

        .blogs-featured-content {
            opacity: 0;
            transform: translateX(50px);
        }

        .blogs-featured-content.animate {
            opacity: 1;
            transform: translateX(0);
            transition: all 0.8s ease 0.3s;
        }

        .blogs-featured-post-title {
            font-size: 26px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 20px;
            line-height: 1.3;
            font-family: "Plus Jakarta Sans", sans-serif;
            font-optical-sizing: auto;
        }

        .blogs-featured-post-excerpt {
            font-size: 16px;
            line-height: 1.7;
            color: #4B4B4B;
            margin-bottom: 25px;
            font-family: "Plus Jakarta Sans", sans-serif;
            font-optical-sizing: auto;
        }

        .blogs-featured-read-more {
            color: #2148B3;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            font-family: "Plus Jakarta Sans", sans-serif;
            font-optical-sizing: auto;
            font-size: 14px;;
        }

        .blogs-featured-read-more:hover {
            color: #1d4ed8;
            text-decoration: underline;
        }

        /* You May Also Like Section */
        .blogs-related-section {
            padding: 100px 0;
            background: #f8fafc;
        }

        .blogs-related-title {
            font-size: 36px;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 60px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out 0.2s forwards;
            font-family: "Plus Jakarta Sans", sans-serif;
            font-optical-sizing: auto;
            letter-spacing: -1px;
        }

        .blogs-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }

        .blogs-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .blogs-card.animate {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.8s ease;
        }

        .blogs-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .blogs-card-image {
            width: 100%;
            height: 200px;
            background: #d1d5db;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .blogs-card:hover .blogs-card-image {
            transform: scale(1.05);
        }

        .blogs-card-content {
            padding: 30px;
        }

        .blogs-card-title {
            font-size: 20px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 15px;
            line-height: 1.4;
            font-family: "Plus Jakarta Sans", sans-serif;
            font-optical-sizing: auto;
        }

        .blogs-card-excerpt {
            font-size: 14px;
            line-height: 1.6;
            color: #4B4B4B;
            margin-bottom: 20px;
            font-family: "Plus Jakarta Sans", sans-serif;
            font-optical-sizing: auto;
        }

        .blogs-card-read-more {
            color: #2148B3;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: color 0.3s ease;
            font-family: "Plus Jakarta Sans", sans-serif;
            font-optical-sizing: auto;
        }

        .blogs-card-read-more:hover {
            color: #1d4ed8;
            text-decoration: underline;
        }

        /* Load More Section */
        .blogs-load-more-section {
            text-align: center;
            padding-bottom: 60px;
        }

        .blogs-load-more-btn {
            background: #0f172a;
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            cursor: pointer;
            opacity: 0;
            transform: translateY(20px);
        }

        .blogs-load-more-btn.animate {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.8s ease;
        }

        .blogs-load-more-btn:hover {
            background: #1a2641;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

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

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .blogs-featured-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .blogs-featured-title {
                font-size: 32px;
                text-align: center;
            }

            .blogs-featured-post-title {
                font-size: 28px;
                text-align: center;
            }

            .blogs-featured-content {
                text-align: center;
            }

            .blogs-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .blogs-related-title {
                font-size: 28px;
                text-align: center;
            }
        }

        @media (max-width: 767px) {
            .blogs-featured-section {
                padding: 60px 0;
            }

            .blogs-related-section {
                padding: 80px 0;
            }

            .blogs-featured-title {
                font-size: 28px;
                margin-bottom: 40px;
            }

            .blogs-featured-post-title {
                font-size: 24px;
            }

            .blogs-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .blogs-related-title {
                font-size: 24px;
                margin-bottom: 40px;
            }

            .blogs-card-content {
                padding: 25px;
            }

            .blogs-featured-image {
                height: 250px;
            }

            .blogs-card-image {
                height: 180px;
            }
        }

        @media (max-width: 480px) {
            .blogs-featured-container {
                gap: 30px;
            }

            .blogs-card-content {
                padding: 20px;
            }

            .blogs-card-title {
                font-size: 18px;
            }

            .blogs-load-more-btn {
                padding: 12px 30px;
                font-size: 14px;
            }
        }

        /* Staggered animation delays for blog cards */
        .blogs-card:nth-child(1) { animation-delay: 0.1s; }
        .blogs-card:nth-child(2) { animation-delay: 0.3s; }
        .blogs-card:nth-child(3) { animation-delay: 0.5s; }
        .blogs-card:nth-child(4) { animation-delay: 0.1s; }
        .blogs-card:nth-child(5) { animation-delay: 0.3s; }
        .blogs-card:nth-child(6) { animation-delay: 0.5s; }