
    /* Logo Showcase Grid */
    .nugsoft-showcase {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        padding: 40px 0;
    }
    
    .nugsoft-client-item {
        background: #ffffff;
        border-radius: 12px;
        padding: 30px;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px rgba(0,0,0,0.07);
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }
    
    .nugsoft-client-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    
    .nugsoft-client-logo {
        margin-bottom: 15px;
        min-height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nugsoft-client-logo img {
        max-width: 200px;
        max-height: 100px;
        width: auto;
        height: auto;
        object-fit: contain;
    }
    
    .nugsoft-client-title {
        font-size: 16px;
        font-weight: 600;
        color: #333;
        margin-top: 10px;
    }
    
    .nugsoft-client-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,123,255,0.9);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .nugsoft-client-item:hover .nugsoft-client-overlay {
        opacity: 1;
    }
    
    .nugsoft-view-project {
        color: white;
        font-size: 18px;
        font-weight: 600;
        text-decoration: none;
        border: 2px solid white;
        padding: 10px 25px;
        border-radius: 25px;
        transition: all 0.3s ease;
    }
    
    .nugsoft-view-project:hover {
        background: white;
        color: #007bff;
    }
    
    /* Single Client Page */
    .nugsoft-single-client {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
    }
    
    .nugsoft-client-page {
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 40px;
    }
    
    /* Featured Banner */
    .nugsoft-featured-banner {
        margin-bottom: 30px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .nugsoft-featured-banner img {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }
    
    /* Main Content */
    .nugsoft-client-main {
        background: white;
        border-radius: 12px;
        padding: 40px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    }
    
    .nugsoft-client-main .nugsoft-client-logo-large {
        text-align: center;
        margin-bottom: 30px;
        padding: 30px;
        background: #f8f9fa;
        border-radius: 8px;
    }
    
    .nugsoft-client-main .nugsoft-client-logo-large img {
        max-width: 250px;
        height: auto;
    }
    
    .nugsoft-client-details {
        margin: 30px 0;
        padding: 25px;
        background: #f8f9fa;
        border-radius: 8px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .nugsoft-detail-item {
        text-align: center;
    }
    
    .nugsoft-detail-label {
        font-size: 12px;
        text-transform: uppercase;
        color: #666;
        margin-bottom: 5px;
        font-weight: 600;
        letter-spacing: 1px;
    }
    
    .nugsoft-detail-value {
        font-size: 16px;
        color: #333;
        font-weight: 500;
    }
    
    .nugsoft-client-content {
        font-size: 16px;
        line-height: 1.8;
        color: #555;
    }
    
    /* Sidebar */
    .nugsoft-sidebar {
        position: sticky;
        top: 20px;
    }
    
    .nugsoft-sidebar-widget {
        background: white;
        border-radius: 12px;
        padding: 25px;
        margin-bottom: 30px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    }
    
    .nugsoft-sidebar-title {
        font-size: 20px;
        font-weight: 700;
        color: #333;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 2px solid #007bff;
    }
    
    .nugsoft-other-client {
        display: flex;
        align-items: center;
        padding: 15px 0;
        border-bottom: 1px solid #e9ecef;
        transition: all 0.3s ease;
        text-decoration: none;
        color: #333;
    }
    
    .nugsoft-other-client:last-child {
        border-bottom: none;
    }
    
    .nugsoft-other-client:hover {
        background: #f8f9fa;
        margin: 0 -15px;
        padding: 15px;
        border-radius: 8px;
    }
    
    .nugsoft-other-logo {
        width: 60px;
        height: 60px;
        margin-right: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f8f9fa;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .nugsoft-other-logo img {
        max-width: 50px;
        max-height: 50px;
        object-fit: contain;
    }
    
    .nugsoft-other-info {
        flex: 1;
    }
    
    .nugsoft-other-name {
        font-weight: 600;
        font-size: 14px;
        margin-bottom: 3px;
    }
    
    .nugsoft-other-type {
        font-size: 12px;
        color: #666;
    }
    
    .nugsoft-back-link {
        display: inline-flex;
        align-items: center;
        color: #007bff;
        text-decoration: none;
        font-weight: 500;
        margin-bottom: 20px;
        transition: color 0.3s ease;
    }
    
    .nugsoft-back-link:hover {
        color: #0056b3;
    }
    
    .nugsoft-back-link:before {
        content: "←";
        margin-right: 8px;
        font-size: 18px;
    }
    
    /* Responsive Design */
    @media (max-width: 1024px) {
        .nugsoft-showcase {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    
    @media (max-width: 768px) {
        .nugsoft-showcase {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .nugsoft-client-page {
            grid-template-columns: 1fr;
        }
        
        .nugsoft-sidebar {
            position: static;
        }
        
        .nugsoft-featured-banner img {
            height: 250px;
        }
    }
    
    @media (max-width: 480px) {
        .nugsoft-showcase {
            grid-template-columns: 1fr;
        }
        
        .nugsoft-client-details {
            grid-template-columns: 1fr;
        }
    }
    