

        /* =========================================================
           RESET
        ========================================================= */

        /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: #ffffff;
            color: #111111;
        }

        a {
            text-decoration: none;
        } */

       

        /* =========================================================
           BLOG HEADER
        ========================================================= */

        .blog-header {
            background: #ffffff;

            color: #071d36;

            text-align: center;

            padding: 145px 20px 55px;

            border-bottom: 1px solid #eeeeee;
        }

        .blog-header h1 {
            font-size: 50px;

            font-weight: 540;
            

            margin-bottom: 12px;

            color: #071d36;
        }

        .blog-header p {
            font-size: 21px;

            font-weight: 400;

            color: #555555;

            line-height: 1.6;
        }


        /* =========================================================
           BLOG CONTAINER
        ========================================================= */

        .blogs-container {
            width: 90%;

            max-width: 1320px;

            margin: 45px auto 70px;
        }


        /* =========================================================
           BLOG GRID
        ========================================================= */

        .blogs-grid {
            display: grid;

            grid-template-columns: repeat(3, 1fr);

            gap: 26px;

            align-items: stretch;
        }


        /* =========================================================
           BLOG CARD
        ========================================================= */

        .blog-card {
            width: 100%;

            height: 480px;

            background: #ffffff;

            border-radius: 10px;

            overflow: hidden;

            display: flex;

            flex-direction: column;

            border: 1px solid #eeeeee;

            box-shadow:
                0 5px 18px rgba(0, 0, 0, 0.07);

            transition:
                transform 0.3s ease,
                box-shadow 0.3s ease;
        }

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

            box-shadow:
                0 12px 28px rgba(0, 0, 0, 0.12);
        }


        /* =========================================================
           BLOG IMAGE
        ========================================================= */

        .blog-image {
            width: 100%;

            height: 275px;

            flex-shrink: 0;

            overflow: hidden;

            background: #eeeeee;
        }

        .blog-image img {
            width: 100%;
            height: 100%;

            object-fit: cover;

            display: block;

            transition: transform 0.4s ease;
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.04);
        }


        /* =========================================================
           BLOG CONTENT
        ========================================================= */

        .blog-content {
            height: 205px;

            padding: 13px 18px 15px;

            display: flex;

            flex-direction: column;

            overflow: hidden;
        }


        /* =========================================================
           DATE
        ========================================================= */

        .blog-date {
            color: #b08d2c;

            font-size: 10px;

            font-weight: 600;

            margin-bottom: 5px;

            text-transform: uppercase;

            letter-spacing: 0.04em;
        }


        /* =========================================================
           TITLE
        ========================================================= */

        .blog-title {
            color: #071d36;

            font-size: 18px;

            font-weight: 600;

            line-height: 1.35;

            margin-bottom: 6px;

            display: -webkit-box;

            -webkit-line-clamp: 2;

            -webkit-box-orient: vertical;

            overflow: hidden;
        }


        /* =========================================================
           DESCRIPTION
        ========================================================= */

        .blog-description {
            color: #666666;

            font-size: 17px;

            font-weight: 400;

            line-height: 1.45;

            margin-bottom: 0;

            display: -webkit-box;

            -webkit-line-clamp: 2;

            -webkit-box-orient: vertical;

            overflow: hidden;
        }


        /* =========================================================
           READ MORE
        ========================================================= */

        .read-more {
            margin-top: auto;

            align-self: flex-start;

            display: inline-flex;

            align-items: center;

            justify-content: center;

            padding: 8px 15px;

            background: #b08d2c;

            color: #ffffff;

            border-radius: 4px;

            font-size: 12px;

            font-weight: 500;

            transition:
                background 0.3s ease,
                transform 0.3s ease;
        }

        .read-more:hover {
            background: #071d36;

            transform: translateX(3px);
        }


        /* =========================================================
           PAGINATION
        ========================================================= */

        .pagination {
            display: flex;

            justify-content: center;

            align-items: center;

            gap: 8px;

            margin-top: 45px;
        }

        .pagination a,
        .pagination span {
            min-width: 40px;

            height: 40px;

            padding: 0 12px;

            display: flex;

            align-items: center;

            justify-content: center;

            border-radius: 4px;

            font-size: 14px;

            font-weight: 600;
        }

        .pagination a {
            background: #071d36;

            color: #ffffff;

            transition: background 0.3s ease;
        }

        .pagination a:hover {
            background: #b08d2c;
        }

        .pagination .active {
            background: #b08d2c;

            color: #ffffff;
        }


        /* =========================================================
           NO BLOGS
        ========================================================= */

        .no-blogs {
            text-align: center;

            padding: 80px 20px;

            color: #666666;

            font-size: 18px;
        }


        /* =========================================================
           TABLET
        ========================================================= */

        /* @media (max-width: 1100px) {

            .nav-links {
                gap: 22px;
            }

            .nav-links a {
                font-size: 15px;
            }

            .nav-cta {
                font-size: 15px;
            }

            .blogs-container {
                max-width: 950px;
            }

            .blogs-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
 */

        /* =========================================================
           MOBILE NAV
        ========================================================= */
/* 
        @media (max-width: 900px) {

            .nav-links {
                display: none;
            }

            .nav-cta {
                display: none;
            }

            .burger {
                display: block;
            }

            .logo {
                width: 160px;
            }

            .logo img {
                width: 140px;
                height: 80px;
            }
        } */


        /* =========================================================
           MOBILE BLOGS
        ========================================================= */

        @media (max-width: 650px) {

            .blog-header {
                padding: 125px 20px 45px;
            }

            .blog-header h1 {
                font-size: 32px;
            }

            .blog-header p {
                font-size: 14px;
            }

            .blogs-container {
                width: 92%;

                margin-top: 35px;
            }

            .blogs-grid {
                grid-template-columns: 1fr;

                gap: 22px;
            }

            .blog-card {
                height: 470px;
            }

            .blog-image {
                height: 265px;
            }

            .blog-content {
                height: 205px;
            }

            .pagination {
                flex-wrap: wrap;

                margin-top: 35px;
            }
        }

  
