        :root {
            --primary-navy: #072ac8;
            --primary-yellow: #ffc600;
            --primary-blue: #1e96fc;
            --background: #f7f7f7;
            --accent-yellow: #ffc600;
            --secondary-blue: #1e96fc;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Ubuntu", sans-serif;
        }

        body {
            background: #f7f7f7;
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
            color: #333;
            line-height: 1.6;
            scroll-behavior: smooth;
        }

        /* Header Styles */
        .blog-header {
            color: var(--primary-yellow);
            padding: 120px 20px 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .blog-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            opacity: 0.15;
            z-index: 0;
        }

        .blog-header-content {
            position: relative;
            z-index: 2;
            max-width: 1000px;
            margin: 0 auto;
        }

        .blog-title {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease;
        }

        .blog-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--primary-navy);
            border-radius: 3px;
        }

        .blog-subtitle {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 30px auto 0;
            font-weight: 300;
            line-height: 1.7;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease 0.3s;
        }

        /* Blog Section */
        .blog-container {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 20px;
            width: 100%;
        }

        .blog-layout {
            display: flex;
            gap: 40px;
            margin-top: 40px;
        }

        .left-column {
            flex: 1;
        }

        .right-column {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-top: 95px;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--primary-blue);
            border-radius: 2px;
        }

        .featured-post {
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.5s ease;
            margin-bottom: 40px;
        }

        .featured-post:hover {
            transform: translateY(-10px);
        }

        .featured-image {
            border-radius:50px;
            height: 350px;
            overflow: hidden;
            border: 3px solid var(--primary-blue)
        }

        .featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.8s ease;
        }

        .featured-post:hover .featured-image img {
            transform: scale(1.05);
        }

        .featured-content {
            padding: 30px;
        }

        .featured-content h3 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--primary-navy);
        }

        .featured-content p {
            font-size: 1.2rem;
            color: #444;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .featured-content .meta {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            color: #666;
        }

        .meta .date {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .post-card {
            display: flex;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            height: 200px;
        }

        .post-card:hover {
            transform: translateY(-5px);
        }

        .post-image {
            border-radius: 50px;
            border: 3px solid var(--primary-blue);
            width: 40%;
            overflow: hidden;
        }

        .post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.8s ease;
        }

        .post-card:hover .post-image img {
            transform: scale(1.1);
        }

        .post-content {
            padding: 25px;
            width: 60%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .post-content h4 {
            font-size: 1.4rem;
            color: var(--primary-navy);
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        .post-card:hover .post-content h4 {
            color: var(--primary-blue);
        }

        .post-content p {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .read-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary-yellow);
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .read-more:hover {
            color: var(--primary-blue);
            gap: 12px;
        }

        .blog-btn {
            display: inline-block;
            padding: 15px 35px;
            background: var(--primary-navy);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            margin-top: 50px;
            transition: all 0.4s ease;
            border: 2px solid var(--primary-navy);
        }

        .blog-btn:hover {
            background: transparent;
            color: var(--primary-navy);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(7, 42, 200, 0.2);
        }

        .blog-btn i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .blog-btn:hover i {
            transform: translateX(5px);
        }

        /* New Blog Grid Section */
        .blog-grid-section {
            margin: 100px 0;
            padding: 0 20px;
        }

        .blog-grid-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 30px;
        }

        .grid-post {
           
            overflow: hidden;
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .grid-post:hover {
            transform: translateY(-10px);
        }

        .grid-post-image {
            border: 3px solid var(--primary-blue);
            border-radius: 50px;
            height: 200px;
            overflow: hidden;
        }

        .grid-post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.8s ease;
        }

        .grid-post:hover .grid-post-image img {
            transform: scale(1.1);
        }

        .grid-post-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .grid-post-content h4 {
            font-size: 1.4rem;
            color: var(--primary-navy);
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        .grid-post:hover .grid-post-content h4 {
            color: var(--primary-blue);
        }

        .grid-post-content .meta {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            color: #666;
            font-size: 0.9rem;
        }

        .view-more-container {
            text-align: center;
            margin-top: 60px;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .blog-title {
                font-size: 3rem;
            }
            
            .blog-layout {
                gap: 30px;
            }
            
            .featured-image {
                height: 300px;
            }
            
            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .blog-header {
                padding: 100px 20px 60px;
            }
            
            .blog-title {
                font-size: 2.5rem;
            }
            
            .blog-subtitle {
                font-size: 1.3rem;
            }
            
            .blog-layout {
                flex-direction: column;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .post-card {
                height: auto;
            }
            
            .blog-grid {
                grid-template-columns: 1fr;
                max-width: 600px;
                margin: 30px auto 0;
            }
        }

        @media (max-width: 576px) {
            .blog-title {
                font-size: 2.2rem;
            }
            
            .blog-subtitle {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .post-card {
                flex-direction: column;
                height: auto;
            }
            
            .post-image {
                width: 100%;
                height: 200px;
            }
            
            .post-content {
                width: 100%;
                padding: 20px;
            }
            
            .featured-image {
                height: 250px;
            }
        }

        /* Animation for grid posts */
        .grid-post {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animated {
            opacity: 1;
            transform: translateY(0);
        }