        .cf-container {
            padding: 20px 15px;
            background: #fff;
            position: relative;
            margin-top: 20px;
        }
        .cf-container::before {
            content: '';
            width: 100%;
            height: 70%;
            position: absolute;
            top: 0;
            left: 0;
            background: var(--text-color);
            opacity: .1;
        }
        .cf_description, .cf-card .card-title{
            display: -webkit-box;
              -webkit-line-clamp: 2;     /* Number of lines to show */
              -webkit-box-orient: vertical;
              overflow: hidden;
              text-overflow: ellipsis;
        }
        .cf_description{
            -webkit-line-clamp: 4;
        }
        #projectsContainer {
            display: flex;
            flex-wrap:wrap;
            justify-content: center;
            gap: 25px;
        }
        .cf-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            height: 100%;
            min-width: 300px;
            width: 400px;
            position: relative;
            background: #fff;
        }
        .cf-card:hover {
            transform: translateY(-5px);
        }
        .cf-card .carousel-inner::before {
            content: '';
            height: 100%;
            width: 100%;
            background: var(--text-color);
            position: absolute;
            top: 0;
            left: 0;
            opacity: .5;
        }
        .cf-card .carousel-inner{
            top:0;
        }
        .cf-card .carousel-inner img {
            height: 200px;
            object-fit: cover;
        }
        .loading-spinner {
            text-align: center;
            margin: 30px 0;
            display: none;
        }
        #loadMoreBtn {
            display: block;
            margin: 0 auto;
            padding: 10px 30px;
        }
            .ra-post-footer {
                padding: 10px 20px;
                border-top: 1px solid #eee;
                font-size: 0.9rem;
                color: #777;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
        .ra-share-buttons {
            display: flex;
            gap: 10px;
        }
        .ra-post-date {
            font-size: 12px;
        }
        .ra-share-buttons {
            display: flex;
            gap: 10px;
        }
        .ra-share-btn {
            background: none;
            border: none;
            color: #555;
            cursor: pointer;
            font-size: 1rem;
            outline: none;
            border: 0;
            transition: color 0.3s;
        }
        .ra-share-btn:focus{
            outline: none;
        }
        .ra-share-btn i:focus{
            outline: none;
        }
        
        .ra-share-btn:hover {
            color: #007bff;
        }
        
        .ra-share-btn.facebook:hover {
            color: #3b5998;
        }
        
        .ra-share-btn.twitter:hover {
            color: #1da1f2;
        }
        
        .ra-share-btn.linkedin:hover {
            color: #0077b5;
        }
        .ra-share-btn.whatsapp:hover {
           
        @media (max-width: 768px) {
            #projectsContainer {
                grid-template-columns: 1fr;
            }
        }