
        /* ============================================
           SECTION TITLE
           ============================================ */
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h3 {
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #010535;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h3::before {
            content: '';
            position: absolute;
            top: 50%;
            left: -30px;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23010535"><path d="M12 2L15.09 8.26L22 9.27L17 14.14L18.18 21.02L12 17.77L5.82 21.02L7 14.14L2 9.27L8.91 8.26L12 2Z"/></svg>') no-repeat center;
            background-size: cover;
        }
        
        .section-title h2 {
            font-size: 36px;
            font-weight: 700;
            color: #010535;
            margin-bottom: 15px;
        }
        
        .section-title h2 span {
            background: linear-gradient(90.15deg, #023e7e 0%, #2981d4 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .section-title p {
            font-size: 16px;
            color: #707070;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* ============================================
           SEARCH BAR
           ============================================ */
        .blog-search-wrapper {
            max-width: 600px;
            margin: 0 auto 40px;
        }
        
        .blog-search-wrapper .input-group {
            background: #ffffff;
            border-radius: 50px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
            border: 1px solid #e9ecef;
            transition: all 0.3s ease;
            overflow: hidden;
        }
        
        .blog-search-wrapper .input-group:focus-within {
            box-shadow: 0 8px 35px rgba(2, 62, 126, 0.12);
            border-color: #2981d4;
        }
        
        .blog-search-wrapper .form-control {
            border: none;
            padding: 15px 25px;
            font-size: 15px;
            color: #333;
            background: transparent;
            box-shadow: none;
            outline: none;
        }
        
        .blog-search-wrapper .form-control::placeholder {
            color: #adb5bd;
            font-weight: 400;
        }
        
        .blog-search-wrapper .form-control:focus {
            box-shadow: none;
            border-color: transparent;
        }
        
        .blog-search-wrapper .btn-search {
            background: linear-gradient(135deg, #023e7e, #2981d4);
            color: #ffffff;
            border: none;
            padding: 0 30px;
            font-weight: 600;
            font-size: 15px;
            border-radius: 0 50px 50px 0;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .blog-search-wrapper .btn-search:hover {
            background: #010535;
            transform: scale(1.02);
        }
        
        .blog-search-wrapper .btn-search i {
            font-size: 18px;
        }
        
        /* Search Filter Chips */
        .search-filter-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-top: 15px;
        }
        
        .search-filter-chips .chip {
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            padding: 6px 18px;
            border-radius: 25px;
            font-size: 13px;
            font-weight: 500;
            color: #6c757d;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .search-filter-chips .chip:hover {
            background: #e9ecef;
            color: #010535;
        }
        
        .search-filter-chips .chip.active {
            background: linear-gradient(135deg, #023e7e, #2981d4);
            color: #ffffff;
            border-color: #023e7e;
        }
        
        /* ============================================
           BLOG POST CARDS
           ============================================ */
        .blog-section {
            padding: 80px 0;
        }
        
        .blog-card {
            background: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
            margin-bottom: 30px;
            border: 1px solid #f0f0f0;
            transition: all 0.4s ease;
            display: flex;
            flex-direction: row;
            align-items: stretch;
            min-height: 280px;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
        }
        
        /* Blog Image - Left Side */
        .blog-image-wrapper {
            flex: 0 0 38%;
            position: relative;
            overflow: hidden;
            min-height: 260px;
        }
        
        .blog-image-wrapper a {
            display: block;
            height: 100%;
            text-decoration: none;
        }
        
        .blog-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .blog-card:hover .blog-image-wrapper img {
            transform: scale(1.08);
        }
        
        /* Category Badge */
        .blog-category {
            position: absolute;
            top: 20px;
            left: 20px;
            background: linear-gradient(135deg, #023e7e, #2981d4);
            color: #ffffff;
            padding: 6px 18px;
            border-radius: 25px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            z-index: 2;
            box-shadow: 0 4px 10px rgba(2, 62, 126, 0.3);
        }
        
        /* Blog Content - Right Side */
        .blog-content-wrapper {
            flex: 1;
            padding: 30px 35px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .blog-content-body {
            flex: 1;
        }
        
        .blog-content-body .blog-title {
            font-size: 22px;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 12px;
        }
        
        .blog-content-body .blog-title a {
            color: #010535;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .blog-content-body .blog-title a:hover {
            color: #2981d4;
        }
        
        /* Blog Meta */
        .blog-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 15px;
        }
        
        .blog-meta span {
            font-size: 13px;
            color: #707070;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .blog-meta span i {
            color: #2981d4;
            font-size: 14px;
        }
        
        /* Blog Excerpt */
        .blog-excerpt {
            font-size: 15px;
            line-height: 1.7;
            color: #707070;
            margin-bottom: 0;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        /* Read More Button */
        .blog-read-more {
            margin-top: 20px;
            display: flex;
            justify-content: flex-end;
        }
        
        .blog-read-more a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #023e7e, #2981d4);
            color: #ffffff;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
        }
        
        .blog-read-more a:hover {
            background: #010535;
            transform: translateX(5px);
            box-shadow: 0 4px 15px rgba(2, 62, 126, 0.3);
        }
        
        .blog-read-more a i {
            font-size: 16px;
            transition: transform 0.3s ease;
        }
        
        .blog-read-more a:hover i {
            transform: translateX(3px);
        }
        
        /* "No Results" Message */
        .no-results {
            display: none;
            text-align: center;
            padding: 60px 20px;
            background: #ffffff;
            border-radius: 20px;
            border: 1px solid #f0f0f0;
        }
        
        .no-results.show {
            display: block;
        }
        
        .no-results i {
            font-size: 48px;
            color: #dee2e6;
            margin-bottom: 20px;
        }
        
        .no-results h4 {
            color: #010535;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .no-results p {
            color: #6c757d;
        }
        
        /* ============================================
           PAGINATION
           ============================================ */
        .blog-pagination {
            margin-top: 20px;
        }
        
        .blog-pagination .pagination {
            gap: 6px;
            margin: 0;
        }
        
        .blog-pagination .page-link {
            display: flex;
            justify-content: center;
            align-items: center;
            background: #f8f9fa;
            color: #010535;
            border-radius: 10px;
            width: 42px;
            height: 42px;
            font-weight: 600;
            font-size: 14px;
            border: 1px solid #e9ecef;
            transition: all 0.3s ease;
            text-decoration: none;
            padding: 0;
        }
        
        .blog-pagination .page-link:hover {
            background: #010535;
            color: #ffffff;
            border-color: #010535;
            transform: translateY(-2px);
        }
        
        .blog-pagination .page-item.active .page-link {
            background: linear-gradient(135deg, #023e7e, #2981d4);
            color: #ffffff;
            border-color: #023e7e;
            box-shadow: 0 4px 15px rgba(2, 62, 126, 0.3);
        }
        
        .blog-pagination .page-item.disabled .page-link {
            background: #f8f9fa;
            color: #adb5bd;
            cursor: not-allowed;
            opacity: 0.6;
            transform: none;
        }
        
        .blog-pagination .page-item.disabled .page-link:hover {
            background: #f8f9fa;
            color: #adb5bd;
            transform: none;
        }
        
        /* ============================================
           RESPONSIVE DESIGN
           ============================================ */
        
        /* Tablet & Medium Screens */
        @media (max-width: 991.98px) {
            .page-header {
                padding: 50px 0;
            }
            
            .page-header h1 {
                font-size: 34px;
            }
            
            .section-title h2 {
                font-size: 30px;
            }
            
            .blog-card {
                flex-direction: column;
                min-height: auto;
                border-radius: 16px;
            }
            
            .blog-image-wrapper {
                flex: 0 0 auto;
                min-height: 220px;
                width: 100%;
            }
            
            .blog-image-wrapper img {
                min-height: 220px;
            }
            
            .blog-content-wrapper {
                padding: 25px;
            }
            
            .blog-content-body .blog-title {
                font-size: 20px;
            }
            
            .blog-search-wrapper .btn-search span {
                display: none;
            }
        }
        
        /* Mobile & Small Screens */
        @media (max-width: 767.98px) {
            .page-header {
                padding: 40px 0;
            }
            
            .page-header h1 {
                font-size: 28px;
            }
            
            .section-title h2 {
                font-size: 24px;
            }
            
            .section-title p {
                font-size: 14px;
            }
            
            .blog-section {
                padding: 50px 0;
            }
            
            .blog-card {
                border-radius: 14px;
                margin-bottom: 20px;
            }
            
            .blog-image-wrapper {
                min-height: 180px;
            }
            
            .blog-image-wrapper img {
                min-height: 180px;
            }
            
            .blog-content-wrapper {
                padding: 20px;
            }
            
            .blog-content-body .blog-title {
                font-size: 18px;
                margin-bottom: 10px;
            }
            
            .blog-meta {
                gap: 12px;
                margin-bottom: 10px;
            }
            
            .blog-meta span {
                font-size: 12px;
            }
            
            .blog-excerpt {
                font-size: 14px;
                -webkit-line-clamp: 2;
            }
            
            .blog-category {
                font-size: 10px;
                padding: 4px 14px;
                top: 15px;
                left: 15px;
            }
            
            .blog-read-more {
                justify-content: flex-start;
                margin-top: 15px;
            }
            
            .blog-read-more a {
                padding: 8px 20px;
                font-size: 13px;
            }
            
            .blog-pagination .page-link {
                width: 36px;
                height: 36px;
                font-size: 13px;
            }
            
            .blog-search-wrapper .form-control {
                padding: 12px 18px;
                font-size: 14px;
            }
            
            .blog-search-wrapper .btn-search {
                padding: 0 20px;
                font-size: 14px;
            }
            
            .search-filter-chips .chip {
                font-size: 12px;
                padding: 5px 14px;
            }
        }
        
        /* Extra Small Devices */
        @media (max-width: 575.98px) {
            .page-header h1 {
                font-size: 24px;
            }
            
            .section-title h2 {
                font-size: 20px;
            }
            
            .blog-image-wrapper {
                min-height: 150px;
            }
            
            .blog-image-wrapper img {
                min-height: 150px;
            }
            
            .blog-content-wrapper {
                padding: 15px;
            }
            
            .blog-content-body .blog-title {
                font-size: 16px;
            }
            
            .blog-excerpt {
                font-size: 13px;
                -webkit-line-clamp: 2;
            }
            
            .blog-meta {
                gap: 8px;
                flex-wrap: wrap;
            }
            
            .blog-meta span {
                font-size: 11px;
            }
            
            .blog-read-more a {
                padding: 6px 16px;
                font-size: 12px;
            }
            
            .blog-pagination .page-link {
                width: 32px;
                height: 32px;
                font-size: 12px;
            }
            
            .blog-pagination .pagination {
                gap: 4px;
            }
            
            .blog-search-wrapper .input-group {
                border-radius: 30px;
            }
            
            .blog-search-wrapper .form-control {
                padding: 10px 15px;
                font-size: 13px;
            }
            
            .blog-search-wrapper .btn-search {
                padding: 0 15px;
                font-size: 13px;
                border-radius: 0 30px 30px 0;
            }
            
            .blog-search-wrapper .btn-search i {
                font-size: 16px;
            }
            
            .search-filter-chips {
                gap: 6px;
            }
            
            .search-filter-chips .chip {
                font-size: 11px;
                padding: 4px 12px;
            }
        }
        
        /* ============================================
           UTILITY - Animation Classes
           ============================================ */
        .fade-in-up {
            opacity: 0;
            animation: fadeInUp 0.6s ease forwards;
        }
        
        .fade-in-up:nth-child(1) { animation-delay: 0.05s; }
        .fade-in-up:nth-child(2) { animation-delay: 0.1s; }
        .fade-in-up:nth-child(3) { animation-delay: 0.15s; }
        .fade-in-up:nth-child(4) { animation-delay: 0.2s; }
        .fade-in-up:nth-child(5) { animation-delay: 0.25s; }
        .fade-in-up:nth-child(6) { animation-delay: 0.3s; }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* ============================================
           DARK MODE SUPPORT (Optional)
           ============================================ */
        @media (prefers-color-scheme: dark) {
       
            
            .blog-card {
                background: #F2F2F5;
                border-color: #e6e6e7;
            }

            .blog-search-wrapper .form-control::placeholder {
                color: #6c757d;
            }
            


            .no-results h4 {
                color: #ffffff;
            }
        }

        /* ============================================
           BLOG DETAILS SECTION
           ============================================ */
        .blog-details-section {
            padding: 80px 0;
        }
        
        /* Featured Image */
        .blog-featured-image {
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
        }
        
        .blog-featured-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        
        /* Blog Meta */
        .blog-details-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e9ecef;
        }
        
        .blog-details-meta span {
            font-size: 14px;
            color: #707070;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .blog-details-meta span i {
            color: #2981d4;
            font-size: 16px;
        }
        
        .blog-details-meta .blog-category-badge {
            background: linear-gradient(135deg, #023e7e, #2981d4);
            color: #ffffff;
            padding: 4px 16px;
            border-radius: 25px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        /* Blog Title */
        .blog-details-title {
            font-size: 32px;
            font-weight: 600;
            color: #010535;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        /* Blog Content */
        .blog-details-content {
            font-size: 16px;
            line-height: 1.8;
            color: #444;
        }
        
        .blog-details-content p {
            margin-bottom: 20px;
        }
        
        .blog-details-content h2 {
            font-size: 28px;
            font-weight: 700;
            color: #010535;
            margin: 40px 0 20px;
        }
        
        .blog-details-content h3 {
            font-size: 22px;
            font-weight: 600;
            color: #010535;
            margin: 30px 0 15px;
        }
        
        .blog-details-content ul,
        .blog-details-content ol {
            margin-bottom: 20px;
            padding-left: 25px;
        }
        
        .blog-details-content ul li,
        .blog-details-content ol li {
            margin-bottom: 10px;
        }
        
        .blog-details-content blockquote {
            background: #f0f4f8;
            border-left: 4px solid #2981d4;
            padding: 20px 30px;
            border-radius: 10px;
            margin: 30px 0;
            font-style: italic;
            font-size: 18px;
            color: #010535;
        }
        
        .blog-details-content blockquote cite {
            display: block;
            margin-top: 10px;
            font-size: 14px;
            color: #707070;
            font-style: normal;
        }
        
        .blog-details-content img {
            max-width: 100%;
            border-radius: 15px;
            margin: 20px 0;
        }
        
          
        /* ============================================
           RESPONSIVE DESIGN
           ============================================ */
        
        /* Tablet */
        @media (max-width: 991.98px) {
            .page-header {
                padding: 50px 0;
            }
            
            .page-header h1 {
                font-size: 34px;
            }
            
            .blog-details-section {
                padding: 50px 0;
            }
            
            .blog-details-title {
                font-size: 30px;
            }
            

        }
        
        /* Mobile */
        @media (max-width: 767.98px) {
            .page-header {
                padding: 40px 0;
            }
            
            .page-header h1 {
                font-size: 28px;
            }
            
            .blog-details-section {
                padding: 30px 0;
            }
            
            .blog-details-title {
                font-size: 24px;
            }
            
            .blog-details-content {
                font-size: 15px;
            }
            
            .blog-details-content h2 {
                font-size: 22px;
            }
            
            .blog-details-content h3 {
                font-size: 18px;
            }
            
            .blog-details-meta {
                gap: 15px;
            }
            
            .blog-details-meta span {
                font-size: 13px;
            }
            
            .blog-share-section {
                flex-direction: column;
                align-items: flex-start;
            }
            

        }
        
        /* Small Mobile */
        @media (max-width: 575.98px) {
            .page-header h1 {
                font-size: 22px;
            }
            
            .blog-details-title {
                font-size: 20px;
            }
            
            .blog-details-content {
                font-size: 14px;
            }
            
            .blog-details-content blockquote {
                padding: 15px 20px;
                font-size: 16px;
            }
            
            .blog-details-meta {
                gap: 10px;
                flex-wrap: wrap;
            }
            
            .blog-details-meta span {
                font-size: 12px;
            }
            
            .blog-share .share-link {
                width: 36px;
                height: 36px;
            }
            
            .blog-share .share-link i {
                font-size: 15px;
            }
            
            .related-post-card .related-post-image img {
                height: 140px;
            }
        }
        
        /* ============================================
           ANIMATION
           ============================================ */
        .fade-in-up {
            opacity: 0;
            animation: fadeInUp 0.6s ease forwards;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* ============================================
           DARK MODE SUPPORT
           ============================================ */
        @media (prefers-color-scheme: dark) {
            
                      
            .blog-details-meta {
                border-bottom-color: #333;
            }
            
            .blog-share-section {
                border-top-color: #333;
                border-bottom-color: #333;
            }
            
            .blog-tags .tag {
                background: #242424;
                border-color: #333;
                color: #adb5bd;
            }
            
            .blog-tags .tag:hover {
                background: #2981d4;
                color: #ffffff;
            }

            .blog-tags .tag-label,
            .blog-share .share-label {
                color: #ffffff;
            }
        }
